I’ve searched for couple of post/questions asked over UIPasteboard which are posted on StackOverflow ,But i didnt find any solution to my problem so posting this question.
I want to paste copied image in a Twitters NewTwitt and in Facebook’s comment but i am not getting paste option there even if there is image in the Pasteboard object.
I am getting paste option in EMAIL, n it is also working fine.
Here is the code that I am using:
//image is object of UIImage, which holds .png Image
UIPasteboard *objPasteboard = [UIPasteboard generalPasteboard];
NSData *imageData = [NSData dataWithData:UIImagePNGRepresentation(image)];
[objPasteboard setData:imageData forPasteboardType:@"public.png"];

Do I need to implement anything more to paste it in Twitter and facebook. I am postimg the images Screen Shots for reference.
Can anyone please help me out.
You cant paste an
UIImagetoUITextViewand where you are pasting this is anUITextView. It supportsNSStringnotUIImage.You can paste it in
SMS. Which icons or symbols you see inUITextViewthey’reUnicodecharacters not anUIImageboth are different.