我在Xcode 4.3中創建一個視圖,並且我不確定如何指定具有各自按鈕的多個UIAlertView,並使用單獨的操作。目前,我的提醒有自己的按鈕,但操作相同。以下是我的代碼。多個UIAlertView;每個都有自己的按鈕和動作
-(IBAction)altdev {
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"titleGoesHere"
message:@"messageGoesHere"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Continue", nil];
[alert show];
}
-(IBAction)donate {
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"titleGoesHere"
message:@"messageGoesHere"
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Continue", nil];
[alert show];
}
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 1) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.examplesite1.com"]];
}
}
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
if (buttonIndex == 1) {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"examplesite2.com"]];
}
}
感謝您的幫助!
我還是真的不明白我是如何結合這一點。當我試圖將其放入時,無論我做什麼,我都一直在使用未聲明的標識符錯誤。 我將不勝感激,如果你會回覆我顯示的代碼和你的編輯。謝謝 – DiscoveryOV 2012-03-05 02:12:06
已根據您的要求更新。 – cxa 2012-03-05 03:29:44
非常感謝,效果很好。我敢肯定,你可以告訴我對此還沒有很好的經驗,而且有很多像你這樣的人來幫助我們。 – DiscoveryOV 2012-03-06 22:06:39