我有使用 「UIAlertController」 在iOS 8及更高版本。讓我們看到:
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Success" message:@"Your InApp Purchases were successfully restored" preferredStyle:UIAlertControllerStyleAlert];
並添加按鈕:
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){
//do something when click button
}];
記住:
[alertController addAction:okAction];
然後告訴它:
[self presentViewController:alertController animated:YES completion:nill];
如果你想顯示actionsheep,你更改
"preferredStyle:UIAlertControllerStyleActionSheet"
任何原因,你沒有簡單地看在'UIAlertView'(它告訴你到底該怎麼做)的文檔中,或者在發佈這個問題之前做一個搜索?請在發佈前嘗試找到答案。 – rmaddy
如果您在他們的文檔中找不到答案,請將您的項目更好地轉移到iOS 8.:P –