2010-01-17から1日間の記事一覧

Objective-C++備忘

iPhoneアプリでObjective-C++を有効にするためには、 「.m」ファイルを「.mm」とする必要がある。

iPhoneアプリでステータスバーを消す方法

AppDelegate.mの (void)applicationDidFinishLaunching:(UIApplication *)application { 内に下記を追加。 [UIApplicationsharedApplication].statusBarHidden = YES;

iPhoneで初期表示を横向きにする方法

ここから// Override to allow orientations other than the default portrait orientation. (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return (interfaceOr…

[]Objective-C++

iPhoneアプリでObjective-C++を有効にするためには、「.m」ファイルを「.mm」とする必要がある。

[]iPhone

<プロジェクト名>AppDelegate.mの (void)applicationDidFinishLaunching:(UIApplication *)application { 内に下記を追加。[UIApplicationsharedApplication].statusBarHidden = YES;

[]iPhone

ここから// Override to allow orientations other than the default portrait orientation. (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { // Return YES for supported orientations return (interfaceOr…