I already go Inter application communication in iphone but is it possible to communicate two ios apps. or alteast i want notify second app when something happens(event) in First app
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- xcode 4 garbage collection removed?
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
- How can I add media attachments to my push notific
Read this for more information on inter-app communication. This requires though that the other developer of the app you want to communicate with, handles a URL Scheme and you know what it is. Or that the developer supports the "share"capability in iOS. If you develop the apps that communicate, you should either create your own URL scheme or use App-Groups. I hope this helps :)