Skip to content

Instantly share code, notes, and snippets.

@is8r
Created June 27, 2014 15:58
Show Gist options
  • Save is8r/4b0904c9c5d1d0a1d7ab to your computer and use it in GitHub Desktop.
Save is8r/4b0904c9c5d1d0a1d7ab to your computer and use it in GitHub Desktop.
#import <uikit/UIKit.h>
//twitter
#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;
//twitter
SA_OAuthTwitterEngine *twitterEngine;
NSNumber *twitterState;//0.ログイン前 1.ログイン後 2.つぶやき終了
}
@property (nonatomic, retain) UIWindow *window;
//twitter
-(NSNumber *) twit:(NSString*)s;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment