Xcode を使用して Objective-C で iOS アプリケーションを作成していますが、奇妙なエラーが発生しました。コードは次のとおりです。
#import "LAAppDelegate.h"
#import "Reachability.h"
@implementation LAAppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *)launchOptions
{
NetworkStatus networkStatus =
[[Reachability reachabilityForInternetConnection]
currentReachabilityStatus];
if (networkStatus == NotReachable) {
UIAlertView *alert = [[UIAlertView alloc]
initWithTite:@"Network Unavailable"
message:@"Lazuli requires an internet connection"
delegate:nil
cancelButtonTitle:@"Ignore"
otherButtonTitles:nil];
[alert show];
}
// Override point for customization after application launch.
return YES;
}
エラーが発生し続けます:「'UIAlertView' の目に見える @interface は、セレクター 'initWithTite:message:delegate:cancelButtonTitle:otherButtonTitles:' を宣言しません」
私は初心者で、助けが必要です!