We are requiring to share some information between 2 different iPhone applications which are part of suite. Let say we want to share some objects between those 2 applications like array.

After some search we found GenericKeychain demo application from APPLE itself which shows use of generic keychain to share information between 2 different applications.

In that demo they have shown how to share string but what we want to achieve is to share an array of objects between applications. We tried a lot to do the same in demo application but somehow couldn't get required result and was always crashing when tried to put object for sharing. Can someone please light on this topic ?

link|improve this question

Crashing? What error? – jtbandes Aug 1 '11 at 5:56
I tried to add NSMutableArray instead of string in that application but it crashes with [__NSArrayM dataUsingEncoding:]: unrecognized selector sent to instance – Jennis Aug 1 '11 at 6:02
feedback

3 Answers

up vote 1 down vote accepted

Referring to your answer "I tried to add NSMutableArray instead of string in that application but it crashes with [__NSArrayM dataUsingEncoding:]: unrecognized selector sent to instance"

Try putting dataUsingEncoding: in the documentation search you will see that its a method of nsstring class not nsarray. Use another method of getting data like mentioned in this post:

How to convert NSArray to NSData?

link|improve this answer
feedback

Have you considered sending your data to a remote server and having the second app access that data?

link|improve this answer
As there are few limitations, We don't want to user remote server for this. Thax for your feedback. – Jennis Aug 1 '11 at 6:12
feedback

You can try using the UIPasteboard to paste the data to be shared & then access (& then possibly delete) the shared data from the 2nd app. Have a look at- http://developer.apple.com/library/ios/#documentation/uikit/reference/UIPasteboard_Class/Reference.html.

Thanks,

Akshay

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.