iOS Twitter OAuth
将文件夹 "TwitterOAuthViewController" 添加到您的项目中,并导入 "TwitterOAuthViewController.h"。
TwitterOAuthViewController * twitterOAuthVC = [[TwitterOAuthViewController alloc] initWithCompletion:^(BOOL succeeded, id object) {
if (succeeded && object) {
NSLog(@"%@",object);
//do something
}
}];
UINavigationController * navC = [[UINavigationController alloc] initWithRootViewController:twitterOAuthVC];
[self presentViewController:navC animated:YES completion:NULL];
享受吧