I am creating a application UIPasteboard with my app's identifier as a name (e.g. com.example.app.pboard) as suggested in the docs.

All the copying and pasting works, but the damn thing never goes away. I set its persistent property explicitly to NO every time I access it to copy something onto it, and I even call UIPasteboard's +removePasteboardWithName: every time my app starts.

But every time I look at it, the most recent thing I copied onto it is always there, despite app restarts.

What gives?

link|improve this question

feedback

1 Answer

No idea why what you are trying isn't working, here are two guesses and a possible solution:

  • Removing the paste board may be expected to be executed on exit from the app, so it doesn't execute until the app is terminated or backgrounded?
  • Calling remove and then asking for the items may be recreating it again in the same "place" so the items still remain.

You could perhaps solve this by setting the pasteboard's items to nil when leaving or entering the app.

link|improve this answer
Well, the first guess can't be right, since if i want to keep a pasteboard valid for the duration of a multitasking app, then there's never a valid time to remove it. That said, your solution worked-- on app start, I just get the pasteboard and nuke the items. Still can't explain it, but that does work. Thanks! – quixoto Oct 6 '11 at 7:49
feedback

Your Answer

 
or
required, but never shown

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