Tagged Questions

1
vote
1answer
526 views

Receiving UIPasteboard (generalPasteboard) notification while in the background

In there a way to do this? I register my object for this (UIPasteboardChangedNotification) at launch time, but when sending it to the background and opening (for instance) Safari and copying some ...
1
vote
4answers
1k views

Would the general iPhone pasteboard ever contain more than one item?

Would pasteboard.numberOfItems (in the code below) ever be greater than 1? How would the user cause this to happen? UIPasteboard *pasteBoard = [UIPasteboard generalPasteboard]; ...
0
votes
1answer
926 views

get copied data from UIpasteboard

i have copied image from UIwebView using clipboard and i want to mail it.For this,I use general pasteboard to get data,but there is a problem in retrieving data.When i check the pasteboard current ...
0
votes
0answers
266 views

iPhone generalPasteboard loses contents if application is closed by an -openURL: call

I have a method, that puts something on the pasteboard. This method is called one of two ways, one, as an IBAction from a button, the other from another method which afterwards closes the application ...