LoginSignup
6
6

More than 5 years have passed since last update.

【objective-c】lineに投稿する(備忘録)

Last updated at Posted at 2014-11-22

xcodeでlineに投稿する

UIImageのlineImgを宣言して、UIImagePNGRepresentation( )
                           ↑ここに入れた

UIImage *lineImg = UIGraphicsGetImageFromCurrentImageContext() ;

UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
[pasteboard setData:UIImagePNGRepresentation(lineImg) forPasteboardType:@"public.png"];
NSString *LineUrlString = [NSString stringWithFormat:@"line://msg/image/%@", pasteboard.name];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:LineUrlString]];

出典:
http://lab.dolice.net/blog/2013/06/29/objc-share-to-social/

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6