私はこのチュートリアルに従っています: http://www.appcoda.com/hello-world-build-your-first-iphone-app/
シンプルな iOS 6 アプリを作成してみてください。
ただし、次のエラーが表示されます。@interface for 'UIAlertView'...
私は持っている:
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
-(IBAction)showMessage;
@end
私のAppDelegate.h
ファイルと
-(IBAction)showMessage
{
UIAlertView *helloWorldAlert = [[UIAlertView alloc]initWithTitle:@"my first app" message:@"hello there world!" delagate:nil cancelButtonTitle:@"dismiss" otherButtonTitles:nil];
[helloWorldAlert show];
}
@end
私のAppDelegate.m
ファイルに
エラーが何を示しているのか理解できないようです。Google 検索を試みましたが、解決策を見つけるのにこれ以上近づきませんでした。何を修正する必要がありますか?
正確なエラー メッセージ:
No visible @interface for 'UIAlertView' declares the selector 'initWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:'