i want to share text data between two iphone apps. How can i use paste board for this purpose. Can anyone help me with a sample code. Thanks in advance. Suggest me if there are better ways than pasteboard to accomplish my task.
|
feedback
|
|
If you simply want to use IPC, make both of your apps recognize some URL scheme. Then call
to send, and use To share strings via the pasteboard, use
to save, and use Alternatively, you can share stuff via:
| |||
|
feedback
|
|
You could use custom URL schemes to communicate between your apps. I wouldn't pollute the user's clipboard unless they specifically wanted to copy something to the clipboard—imagine the frustration of storing a snippet of text in the clipboard and then having some app overwrite it just to send data to another app... Not a good user experience. Update: As @ohhorob commented, it is possible to create custom pasteboards. If you are going to share data via the pasteboard, make sure you create your own (persistent) application pasteboard and use this instead of the main pasteboard. See here for more information. | |||||||
feedback
|