Twitter-OAuth 0.1.2

Twitter-OAuth 0.1.2

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最近发布2015年2月

Dwarven YangDwarven维护。



  • Dwarven

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];

享受吧