0

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:' を宣言しません」

私は初心者で、助けが必要です!

4

1 に答える 1

5

メソッド呼び出しにタイプミスがあります。initWith Title ... であり、initWith Tite ...ではありません。

于 2013-01-01T15:33:05.097 に答える