Social, Accounts 추가.
//페이스북
- (IBAction)slAccountButtonPressed:(id)sender {
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook])
{
SLComposeViewController*fvc = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
[fvc setInitialText:@"Lhasa"];
[fvc addImage:[UIImage imageNamed:@"lhasa"]];
[self presentViewController:fvc animated:YES completion:nil];
}
}
//트위터
- (IBAction)twitter:(id)sender {
if ([SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter])
{
SLComposeViewController*fvc = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeTwitter
];
[fvc setInitialText:@"Lhasa"];
[fvc addImage:[UIImage imageNamed:@"lhasa"]];
[self presentViewController:fvc animated:YES completion:nil];
}
}
'Developer > iOS' 카테고리의 다른 글
[iOS]Xcode Terminal로 commit하기. (1) | 2013.06.04 |
---|---|
[iOS]원(circle draw) 그리기 (0) | 2013.06.04 |
[iOS]UserDefaults 사용법 (0) | 2013.05.15 |
[iOS]하위 뷰 조회하기. (0) | 2013.05.07 |
[iOS] 복사하기 (0) | 2013.05.03 |