CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Feb 2015 |
Maintained by Dwarven Yang, Dwarven.
iOS Twitter OAuth
add folder "TwitterOAuthViewController" to your project,import "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];Enjoy