Twitter

Twitter URL Scheme 적용을 위한 User id 찾기

June 12, 2015 Blog

앱 내에서 웹뷰로 URL을 띄우려다 URL Scheme를 같이 적용시키면 좋을 것 같아 주소를 검색했다. twitter://status?id=12345 twitter://user?screen_name=lorenb twitter://user?id=12345 twitter://status?id=12345 twitter://timeline twitter://mentions twitter://messages twitter://list?screen_name=lorenb&slug=abcd twitter://post?message=hello%20world twitter://post?message=hello%20world&in_reply_to_status_id=12345 twitter://search?query=%23hashtag 구글링으로 찾을 수...

SpriteKit에서 현재 화면 캡쳐 및 트위터 공유하는 방법

February 12, 2014 Blog

게임이 끝나고 iOS 내장된 트위터를 통해서 점수를 보낼 때, 현재 화면을 캡쳐해서 UIImage로 저장하는 방법이다. - (void)onShareClicked:(id)sender {   NSString *scoreString = [NSString stringWithFormat:@"Just scored %ld.", (long)_score];   SLComposeViewController *tvc =...