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を1つの "OK"ボタンと1つの "フルバージョンを購入"ボタンで表示しようとしています。どのように私は上記のコードを動作させることができますか?あなたが指定したUIAlertViewDelegate
でボタンのクリックを処理する必要がUIAlert表示目的C - 開店アプリストアリンク
おかげ
このメソッドは、任意のコードではなく、ボタンのタイトルを使用します。 – Eiko