我是新來的Xcode(7.3)和iOS(9.3)。我是試着樣本項目中顯示警告信息,但我得到的錯誤,如:我有錯誤:沒有可視化界面「UIAlertController」
「無對於「UIAlertController」可視化界面聲明「show'.Belo我重視的代碼。
//ViewController.m//
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"My Alert"
message:@"This is an alert."
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {}];
[alert show];
//AppDelegate.h//
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end.
請幫助我。
提示 - 在UIAlertController文檔中,您是否看到'show'方法? – rmaddy