Re: Image Processing

2010-12-12 Thread Dave Keck
See the CoreImage docs: http://developer.apple.com/library/mac/#documentation/GraphicsImaging/Conceptual/CoreImaging/ci_intro/ci_intro.html ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments t

Image Processing

2010-12-12 Thread Rikza Azriyan
Anybody can help me? I have a project that need image processing in it such edgedetection, convert to grayscale, bluring etc witch is access to the pixel for manipulating... Is there a specific class to do image processing pixel base?? Thx b4 Sent from my iPhone__

Re: strategies for working w/ large amounts of text

2010-12-12 Thread Shane
> Are you building a concordance database first ? > I have no thoughts whatsoever on how I'm building anything as of yet. Just researching how something of this size would be manipulated. I'm certainly looking over those USFM standards. ___ Cocoa-dev m

Re: Record indentifier and the truth

2010-12-12 Thread Nick Zitzmann
On Dec 12, 2010, at 3:03 AM, Ferruccio Vitale wrote: > Hi, > > when I register a sync client and ask to pull the truth, I get all the > records of requested entity, each of them identified by an ID > ([ISyncChange recordIdentifier]): actually this ID changes each time I > pull the truth and diff

Re: strategies for working w/ large amounts of text

2010-12-12 Thread Kyle Sluder
On Dec 12, 2010, at 3:58 PM, Shane wrote: > Hi all, > > I'm starting my research on how to work with a database for entire > books, specifically, the bible. I've worked with several RDB's in the > past, but for working with a large amount of text like the bible, what > are some ways/frameworks

strategies for working w/ large amounts of text

2010-12-12 Thread Shane
Hi all, I'm starting my research on how to work with a database for entire books, specifically, the bible. I've worked with several RDB's in the past, but for working with a large amount of text like the bible, what are some ways/frameworks in Cocoa of handling this? I can find text downloads of t

Re: [iOS 4.2] NSDateFormatter -init not available in iOS > 3.2 - how to init then?

2010-12-12 Thread WT
On Dec 12, 2010, at 9:12 PM, Kyle Sluder wrote: > On Sun, Dec 12, 2010 at 2:41 PM, WT wrote: >> Hello, >> >> according to the iOS 4.2 NSDateFormatter class documentation, the -init >> method is available in iOS 2.0 through iOS 3.2, but it does not offer an >> alternative method to initialize a

Re: [iOS 4.2] NSDateFormatter -init not available in iOS > 3.2 - how to init then?

2010-12-12 Thread WT
On Dec 12, 2010, at 9:01 PM, Kyle Sluder wrote: > On Sun, Dec 12, 2010 at 2:58 PM, Siegfried > wrote: >> On 12/12/2010, at 20:41, WT wrote: >> >>> Hello, >>> >>> according to the iOS 4.2 NSDateFormatter class documentation, the -init >>> method is available in iOS 2.0 through iOS 3.2, >> >> S

Re: [iOS 4.2] NSDateFormatter -init not available in iOS > 3.2 - how to init then?

2010-12-12 Thread Siegfried
On 12/12/2010, at 21:01, Kyle Sluder wrote: > On Sun, Dec 12, 2010 at 2:58 PM, Siegfried > wrote: >> On 12/12/2010, at 20:41, WT wrote: >> >>> Hello, >>> >>> according to the iOS 4.2 NSDateFormatter class documentation, the -init >>> method is available in iOS 2.0 through iOS 3.2, >> >> Sorry

Re: [iOS 4.2] NSDateFormatter -init not available in iOS > 3.2 - how to init then?

2010-12-12 Thread Kyle Sluder
On Sun, Dec 12, 2010 at 2:41 PM, WT wrote: > Hello, > > according to the iOS 4.2 NSDateFormatter class documentation, the -init > method is available in iOS 2.0 through iOS 3.2, but it does not offer an > alternative method to initialize a newly allocated date formatter (or, if it > does, I mis

Re: [iOS 4.2] NSDateFormatter -init not available in iOS > 3.2 - how to init then?

2010-12-12 Thread WT
On Dec 12, 2010, at 8:58 PM, Siegfried wrote: > On 12/12/2010, at 20:41, WT wrote: > >> Hello, >> >> according to the iOS 4.2 NSDateFormatter class documentation, the -init >> method is available in iOS 2.0 through iOS 3.2, > > Sorry, but the init method? Just to confirm, where exactly in the

Re: [iOS 4.2] NSDateFormatter -init not available in iOS > 3.2 - how to init then?

2010-12-12 Thread Kyle Sluder
On Sun, Dec 12, 2010 at 2:58 PM, Siegfried wrote: > On 12/12/2010, at 20:41, WT wrote: > >> Hello, >> >> according to the iOS 4.2 NSDateFormatter class documentation, the -init >> method is available in iOS 2.0 through iOS 3.2, > > Sorry, but the init method? Just to confirm, where exactly in the

Re: [iOS 4.2] NSDateFormatter -init not available in iOS > 3.2 - how to init then?

2010-12-12 Thread Siegfried
On 12/12/2010, at 20:41, WT wrote: > Hello, > > according to the iOS 4.2 NSDateFormatter class documentation, the -init > method is available in iOS 2.0 through iOS 3.2, Sorry, but the init method? Just to confirm, where exactly in the documentation did you read about this? > but it does not

[iOS 4.2] NSDateFormatter -init not available in iOS > 3.2 - how to init then?

2010-12-12 Thread WT
Hello, according to the iOS 4.2 NSDateFormatter class documentation, the -init method is available in iOS 2.0 through iOS 3.2, but it does not offer an alternative method to initialize a newly allocated date formatter (or, if it does, I missed it on repeated readings of the docs). How then? I

Re: iOS multiple text colors in an editable text field

2010-12-12 Thread Kyle Sluder
On Dec 12, 2010, at 4:43 AM, BareFeetWare wrote: > On 12/12/2010, at 5:02 PM, Kyle Sluder wrote: > >> We wrote our own. > > Could you perhaps be more enlightening? Such as for what app(s)? For display > did you use CoreText and NSAttributedStrings or UIWebView? What did you do > for text edi

Re: convert CFRange to NSRange?

2010-12-12 Thread Andreas Grosam
On Dec 12, 2010, at 4:34 PM, Matt Neuburg wrote: > I feel like I'm missing something. I can't seem to typecast as CFRange to an > NSRange. Both are distinct C structs. In C, *explicitly* typecasting one pointer to the other would be allowed but semantically incorrect. In C++ casting a pointer

Re: convert CFRange to NSRange?

2010-12-12 Thread John C. Randolph
On Dec 12, 2010, at 7:34 AM, Matt Neuburg wrote: I feel like I'm missing something. I can't seem to typecast as CFRange to an NSRange. I know I can pull a CFRange apart and reassemble it as an NSRange, but shouldn't there be a simpler way? m. CFRange is defined as a pair of unsigned longs,

convert CFRange to NSRange?

2010-12-12 Thread Matt Neuburg
I feel like I'm missing something. I can't seem to typecast as CFRange to an NSRange. I know I can pull a CFRange apart and reassemble it as an NSRange, but shouldn't there be a simpler way? m. -- matt neuburg, phd = m...@tidbits.com, A fool + a tool + an autorelease

Re: iOS multiple text colors in an editable text field

2010-12-12 Thread Matt Neuburg
On Sun, 12 Dec 2010 14:05:38 +1100, BareFeetWare said: >1. Apple Mail. If you reply to a messages containing multi-colored text, you >can edit that text. > >So my question is, how do they do it? Perhaps they have access to API that we don't... m. -- matt neuburg, phd = m...@tidbits.com,

Re: NSTask with unzip

2010-12-12 Thread Torsten Curdt
On Sun, Dec 12, 2010 at 13:34, John C. Randolph wrote: > You don't need to launch a separate task for this.  Just use Pierre-Olivier > LaTour's NSData category: > > http://code.google.com/p/polkit/ Careful - that code is GPL licensed. ___ Cocoa-dev mai

Re: [iOS] How to add push animation to view controller without a navigation controller

2010-12-12 Thread Tharindu Madushanka
Hi, Thanks, Great. I added a navigation controller and [navController setNavigationBarHidden:YES animated:NO]; Or Shows Navigation Bar tick on Interface Builder. :) This was really simple finally. On Sat, Dec 11, 2010 at 10:48 PM, Matt Neuburg wrote: > On Fri, 10 Dec 2010 11:22:16 +0530, Tha

Re: iOS multiple text colors in an editable text field

2010-12-12 Thread BareFeetWare
On 12/12/2010, at 5:02 PM, Kyle Sluder wrote: > We wrote our own. Could you perhaps be more enlightening? Such as for what app(s)? For display did you use CoreText and NSAttributedStrings or UIWebView? What did you do for text editing? Is the result transparent to the user or have annoying glit

Re: NSTask with unzip

2010-12-12 Thread John C. Randolph
You don't need to launch a separate task for this. Just use Pierre- Olivier LaTour's NSData category: http://code.google.com/p/polkit/ " • NSData+GZip adds gzip compression / decompression methods to NSData" -jcr ___ Cocoa-dev mailing list (Cocoa

Record indentifier and the truth

2010-12-12 Thread Ferruccio Vitale
Hi, when I register a sync client and ask to pull the truth, I get all the records of requested entity, each of them identified by an ID ([ISyncChange recordIdentifier]): actually this ID changes each time I pull the truth and differs from the record id owned by the sync server. I wonder if it's p