Twitter-OAuth 0.1.2

Twitter-OAuth 0.1.2

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Feb 2015

Maintained by Dwarven Yang, Dwarven.



  • By
  • Dwarven

iOS Twitter OAuth

How to use

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