Created
June 27, 2014 15:58
-
-
Save is8r/4b0904c9c5d1d0a1d7ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <uikit/UIKit.h> | |
#import "SA_OAuthTwitterEngine.h" | |
#import "SA_OAuthTwitterController.h" | |
#define kOAuthConsumerKey @"xxxxx" //REPLACE ME | |
#define kOAuthConsumerSecret @"xxxxx" //REPLACE ME | |
@class RootViewController; | |
@interface AppDelegate : NSObject <uiapplicationDelegate> { | |
UIWindow *window; | |
RootViewController *viewController; | |
SA_OAuthTwitterEngine *twitterEngine; | |
NSNumber *twitterState;//0.ログイン前 1.ログイン後 2.つぶやき終了 | |
} | |
@property (nonatomic, retain) UIWindow *window; | |
-(NSNumber *) twit:(NSString*)s; | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment