views:

368

answers:

2

Does iPhone have a clipboard API? It seems one can call an API function to set text to the pasteboard which will be accessible by other apps., but can someone verify that this is correct?

Thanks.

+3  A: 

yes, search for UIPasteboard. Only available in OS 3.0 and later, of course.

David Maymudes
+5  A: 

See UIPasteboard Class Reference

Kristopher Johnson