Accessing notes to encrypt in iPhone
I am creating an iPhone platform version of an encryption tool. I need to access notes that users save to encrypt开发者_运维技巧. How would I go about doing this?
The iOS application sandbox doesn’t allow you to do this—your app doesn’t get access to other apps’ data except via system APIs like EventKit. If you want users to be able to store encryptable notes, your app will have to either allow them to write those notes inside it in the first place or sync with a service like Simplenote.
精彩评论