Dwarven / Twitter-OAuth

iOS Twitter OAuth Login and get UserInfo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Twitter-OAuth

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

About

iOS Twitter OAuth Login and get UserInfo

License:Other


Languages

Language:Objective-C 81.4%Language:C 16.9%Language:Ruby 1.7%