iphone用アプリを審査に出してもう1週間以上経った。

iphone用のアプリをappleの審査に出して1週間以上経ったが、いまだにステータスは「レビュー中」のまま。


いつになったら終わるんだと思って調べてみたら、審査待ちの状態から審査が終わるまで二週間
実際にapp storeに並ぶまで1ヶ月以上って言われているらしい。


まじかよー。


現在は次のアプリを開発中。
しかしiphone sdkの資料がネット上に少なくてなんかやろうにもなかなか前に進めず。


開発環境のXCODEが使いずらいし、MACはマウスの動きがなんかもっさりしてるし、iphone sdkはwin32apiいじってるみたいで楽しまくってきた私には超辛いしめんどくさいし。


以下メモ

ステータスバーを消す

1. info.plistに以下の項目追加

UIStatusBar

2. 値をBoolean型に設定後チェックを付ける。

iphoneのレイアウトを横向きに設定する

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
    // Return YES for supported orientations
	
	// 画面を横向きに設定
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

タイマーを作る

[NSTimer scheduledTimerWithTimeInterval:1.0
			         target:self
	                       selector:@selector(move:)
			       userInfo:nil
				repeats:YES];
- (void)move:(NSTimer *)timer
{
    //処理を記述
}

UIImageViewにリソースから画像を設定する

NSString *imageName = @"test.jpg";
[image setImage: [UIImage imageNamed: imageName]];

整数を文字列に変換

label.text = [NSString stringWithFormat:@"%01d", time / 60];