0

iCloudを使用するようにアプリを更新しており、iOSのデプロイターゲットを3.2のままにしておきたい。バックレベルバージョンがクラッシュするのを防ぐために、iOS5の呼び出しを条件付きでシールドしています。私のapplicationDidFinishLaunchingは次のようになります...

- (void)applicationDidFinishLaunching:(UIApplication *)application { 

NSLog(@"Launching Began...");
navigationController = [[UINavigationController alloc] init];
navigationController.navigationBar.barStyle = UIBarStyleBlack;
[window addSubview:navigationController.view];
[window makeKeyAndVisible];


//  Getting the documentsPath.
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = [paths objectAtIndex:0];


//  Setting up the mainCarList

//unarchive the saved carlist 
NSString *archivePathFilename = [documentsPath stringByAppendingString:@"/carlist.archive"];    
self.mainCarList = nil;
self.mainCarList = [[NSKeyedUnarchiver unarchiveObjectWithFile:archivePathFilename] retain];

//if OS version => 5.0 then 
NSString *reqSysVer = @"5.0";
NSString *currSysVer = [[UIDevice currentDevice] systemVersion];
if ([currSysVer compare:reqSysVer options:NSNumericSearch] != NSOrderedAscending) {
    NSLog(@"in ApplicationDidFinishLaunching iOS version > 5.0");
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(carListDocumentStateChanged) name:@"UIDocumentStateChangedNotification" object:Nil];


    NSString *carListDocumentURLString = [documentsPath stringByAppendingString:@"/mainCarListDocument.CLD"];
    self.mainCarListDocumentURL = [NSURL fileURLWithPath:carListDocumentURLString]; //sets the local save location only in this property


    Class cls = NSClassFromString (@"NSMetadataQuery");
    if (cls) {
        NSMetadataQuery *query;
        query = [[NSMetadataQuery alloc] init];  // <------- This crashes when running v4.3 iPhone sim.
     /*
        NSMetadataQuery *query = [[NSMetadataQuery alloc] init];

        [self setDocumentMetaDataQuery:query];
        [query setSearchScopes:[NSArray arrayWithObject:NSMetadataQueryUbiquitousDataScope]];
        [query setPredicate:[NSPredicate predicateWithFormat:@"%K == %@", NSMetadataItemFSNameKey, @"mainCarListDocument.CLD"]];
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(queryDidFinishGathering) name:NSMetadataQueryDidFinishGatheringNotification object:Nil];

        BOOL didStart = NO;
        didStart = [query startQuery];

        if (didStart) {
            NSLog(@"documentMetaDataQuery started");
        }
        else {
            NSLog(@"error starting documentMetaDataQuery");
        }
   */
        [query release];

    }


...

「LaunchingBegan」ログが投稿されていないので、コンパイル時に何かが起こっていると思います。条件付きブロックは正しく機能します。クエリのallocinitをコメントアウトすると、iOS5が実行されている場合にのみブロックが実行されます。何か案は?

4

2 に答える 2

1

次のコードを置き換えます。

NSMetadataQuery *query;
query = [[NSMetadataQuery alloc] init];

このコードによって:

id query;
query = [[cls alloc] init];
于 2011-10-28T08:39:16.840 に答える