私はNSLogを削除することができますが、なぜ「EXC_BAD_ACCESS」エラーが出るのですか?NSLogはランタイムエラーを返します
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex2
{
if(buttonIndex2 == 0 && waitForAction == NO)
{
waitForAction = YES;
[self showAbortAlert];
NSLog(@"%@",buttonIndex2); //This one does not crash the app
} else if (buttonIndex2 == 1 && waitForAction == NO)
{
waitForAction = YES;
[self addObject];
NSLog(@"%@",buttonIndex2); //This one crashes the app
} //else if
}
ありがとうございます!私はそれを見落とした。 –
または '%i'(私の個人的な好みの原因は小数点ではないintだと思います)。 – vakio