I am wondering if there is some way to subclass UIPasteboard in order to get the selection behavior, but not get the "Cut, Copy, and Paste" options. In addition to this, is there some notification I can subscribe to that returns the NSRange of the selected body of text once it is selected?

Thanks for any help!

EDIT: I would like to use this subclass to allow the user to indicate the area that they would like to run a function on.

link|improve this question

76% accept rate
Can you clarify your question? What do you mean by "get the selection behavior, but not the cut copy paste options" ? Can you describe your goal more? – Tyler Mar 28 '10 at 21:29
Hi Tyler: I have edited my main post to help clarify my goal. – PF1 Mar 29 '10 at 0:16
feedback

1 Answer

There are two notifications supported by UIPasteboard:

  • UIPasteboardChangedNotification
  • UIPasteboardRemovedNotification

I've looked through the relevant docs and not seen any way to get a range of the selection.

It's possible that future OS versions might give a little more support in this area.

link|improve this answer
Hi Tyler: Assuming that UIPasteboard can't accomplish what I want, how would you suggest implementing the feature? – PF1 Mar 29 '10 at 1:54
I don't know an easy way to allow for easy selectability of text. You could write one yourself, but that's no fun for many reasons. Sorry I can't be more helpful. – Tyler Mar 29 '10 at 6:47
feedback

Your Answer

 
or
required, but never shown

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