Skip to content

Instantly share code, notes, and snippets.

@i2key
Created November 20, 2013 13:39
Show Gist options
  • Save i2key/7563337 to your computer and use it in GitHub Desktop.
Save i2key/7563337 to your computer and use it in GitHub Desktop.
LINEに画像シェアの変更点
+ (BOOL)shareImageBeforeIOS7:(UIImage *)image {
UIPasteboard *pasteboard = [UIPasteboard pasteboardWithName:@"jp.naver.line.pasteboard" create:YES];
[pasteboard setData:UIImageJPEGRepresentation(image, 0.8) forPasteboardType:@"public.jpeg"];
return [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"line://msg/image/%@", pasteboard.name]]];
}
+ (BOOL)shareImageAfterIOS7:(UIImage *)image {
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
[pasteboard setData:UIImageJPEGRepresentation(image, 0.8) forPasteboardType:@"public.jpeg"];
return [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"line://msg/image/%@", pasteboard.name]]];
}
@i2key
Copy link
Author

i2key commented Nov 20, 2013

グローバルクリップボードを使う。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment