removed obj-c oauth
This commit is contained in:
parent
61b195eebb
commit
65ca64c505
14 changed files with 437 additions and 1124 deletions
24
AccessToken.h
Normal file
24
AccessToken.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
//
|
||||
// AccessToken.h
|
||||
// Twittia 2
|
||||
//
|
||||
// Created by Jeena Paradies on 19/09/2011.
|
||||
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
|
||||
|
||||
@interface AccessToken : NSObject {
|
||||
NSUserDefaults *d;
|
||||
}
|
||||
|
||||
- (void)setAccessToken:(NSString *)_accessToken;
|
||||
- (NSString *)accessToken;
|
||||
- (void)setSecret:(NSString *)_secret;
|
||||
- (NSString *)secret;
|
||||
- (void)setUserId:(NSString *)_userId;
|
||||
- (NSString *)userId;
|
||||
- (void)setScreenName:(NSString *)_screenName;
|
||||
- (NSString *)screenName;
|
||||
|
||||
@end
|
Reference in a new issue