Re: NSKeyedArchiver on OSX to NSKeyedUnarchiver iOS

2010-08-11 Thread Sandro Noël
That's a good idea, i did not think of that, i could store the basic properties and rebuild it on the other side... a little more work but independent. thank you! Sandro. P.S. : I did look at the RTF Class from Omni, but it is tied to the framework and I did not want to include a framework for ju

Re: NSKeyedArchiver on OSX to NSKeyedUnarchiver iOS

2010-08-11 Thread Kyle Sluder
On Wed, Aug 11, 2010 at 3:56 PM, Sandro Noël wrote: > is there a way to render plain RTF strings with core Text? As David Duncan suggested in the previous thread you posted, you need to write and read this information yourself. There is no RTF support on iOS. You might want to look into using a

Re: NSKeyedArchiver on OSX to NSKeyedUnarchiver iOS

2010-08-11 Thread Sandro Noël
Glenn & Ricky thank you for the insight. The reason I am trying to pass the attributed string from one platform to the other is exactly because I am using CoreText to render the string. is there a way to render plain RTF strings with core Text? best regards. On 2010-08-11, at 5:32 PM, glenn

Re: NSKeyedArchiver on OSX to NSKeyedUnarchiver iOS

2010-08-11 Thread Ricky Sharp
On Aug 11, 2010, at 4:32 PM, glenn andreas wrote: > > On Aug 11, 2010, at 3:53 PM, Sandro Noël wrote: > >> Greetings >> >> I'm having problems unarchiving my data in the iphone. >> >> here is the workout. >> >> 1: I archive a AttributedString to my CoreData NSData property using >> NSKeyeda

Re: NSKeyedArchiver on OSX to NSKeyedUnarchiver iOS

2010-08-11 Thread glenn andreas
On Aug 11, 2010, at 3:53 PM, Sandro Noël wrote: > Greetings > > I'm having problems unarchiving my data in the iphone. > > here is the workout. > > 1: I archive a AttributedString to my CoreData NSData property using > NSKeyedarchiver > 2: Transfer the database to the iphone. > 3: load the da