u16suzuの blog

日々学んだことのメモブログです。

2013-07-01から1日間の記事一覧

AppDelegateをグローバルに使う

.pchファイル に書いておくと appをグローバルに使える #import <AppDelegate.h> // 共有オブジェクト #define app (AppDelegate *)[[UIApplication sharedApplication] delegate] #define SharedAppDelegate (AppDelegate *)[[UIApplication sharedApplication] delegate]</appdelegate.h>

UITabBarControllerの使い方

AppDelegate.m の中で, こんな感じで書けば良い self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; _tabBarController = [UITabBarController new]; _homeViewController = [HomeViewController new]; _postViewController =…