UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"An Alert!"
delegate:self cancelButtonTitle:@"OK" otherButtonTitles:[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=301349397&mt=8"]];];
[alert show];
[alert release];
我試圖顯示一個「確定」按鈕和一個「購買完整版」按鈕的UIAlertView。我怎樣才能使上面的代碼工作?UIAlert查看目標C - 打開應用商店鏈接
感謝
該方法需要按鈕標題,而不是任意代碼。 – Eiko 2010-12-12 14:58:49