最近プライベートでiPhoneアプリ作成しているので、メモ。 GETまたはPOST送信してAPIからの戻り値を判定するメソッド。 Objective-Cでは、BOOL値は一般的にYES,NOだそうですがtrue,falseでも問題無いです。 - (void)selectedLoginBtn:(id)sender { if ([self.username.text length] == 0 || [self.password.text length] == 0) { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"ログイン失敗" message:@"ユーザ名またはパスワードが空です" delegate:nil cancelButtonTitle:nil otherButtonTitles:@"OK",nil]; alert.