2013-03-23から1日間の記事一覧

複数のUIAlertViewでdelegateを使い分ける

iOS

tagを使う。 //アラート画面のタグを宣言 static const NSInteger firstAlertTag = 1; static const NSInteger secondAlertTag = 2; //アラートを作るときにタグを設定 UIAlertView *firstAlert = [[UIAlertView alloc] initWithTitle:nil message:@"This is…

警告達

iOS

incomplete implementation .hで宣言したメソッドが.mにないと出てくる。 Storyboardから始めるiPhoneアプリ開発 Incomplete implementation expression result unused 返り値使ってない行に出てくる。 戻り値を使っていない行に対して "Expression result u…