B.S.
B.S.

Reputation: 21726

How to get copied image in iOS?

I know that when user makes for example image Copy in Photo Albums or Safari. Is there a way to get this image in my application programmatically?

Explain, please how to get this copied image.

Upvotes: 1

Views: 971

Answers (1)

B.S.
B.S.

Reputation: 21726

I was impressed founding such an easy and funny solution :)

UIImage *img = [UIPasteboard generalPasteboard].image;

Upvotes: 4

Related Questions