的一個循環我有這樣的代碼:IOS:停止UIAlert
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if(buttonIndex == 0)
{
}
else if(buttonIndex == 1)
{
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Danger"
message:@"war"
delegate:self
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alertView show];
[alertView release];
}
}
,但每一次我推確定這UIAlert交回此委託方法中的時間;我該如何解決這件事?我可以使用BOOL作爲控件嗎?
您可以使用'[alertView cancelButtonIndex]'來檢查取消按鈕的索引(而不是像你那樣對它進行硬編碼) – 2011-06-01 13:51:10