0

Firebase RemoteConfig から情報を取得できません。アプリのインストール時に、MainController ビュー コントローラーの前に言語選択画面があります。MainController ビュー コントローラーで、RemoteConfig フェッチを実行しています。MainControllerビューコントローラーの前に言語選択画面が表示されたときに初めて機能します。しかし、次回から、この特定の行でクラッシュします。

[self.remoteConfig fetchWithExpirationDuration:expirationDuration completionHandler:^(FIRRemoteConfigFetchStatus status, NSError *error) {

次の例外があります。

    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSTaggedPointerString firstObject]: unrecognized selector sent to instance 0xa0000000000616a2'
*** First throw call stack:
(
    0   CoreFoundation                      0x000000010d20134b __exceptionPreprocess + 171
    1   libobjc.A.dylib                     0x000000010cc6221e objc_exception_throw + 48
    2   CoreFoundation                      0x000000010d270f34 -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
    3   CoreFoundation                      0x000000010d186c15 ___forwarding___ + 1013
    4   CoreFoundation                      0x000000010d186798 _CF_forwarding_prep_0 + 120
    5   English                             0x0000000107f44e1b -[GIPLocale googleLanguageWithAppleLanguages:] + 33
    6   English                             0x0000000107f45396 -[GIPLocale recalculateLocale] + 54
    7   English                             0x0000000107f44c26 -[GIPLocale initWithLanguageMappings:] + 99
    8   English                             0x0000000107f44b77 __25+[GIPLocale googleLocale]_block_invoke + 41
    9   libdispatch.dylib                   0x000000010da900cd _dispatch_client_callout + 8
    10  libdispatch.dylib                   0x000000010da751fc dispatch_once_f + 501
    11  English                             0x0000000107f44b4c +[GIPLocale googleLocale] + 42
    12  English                             0x0000000107f42d06 +[RCNDevice deviceLocale] + 31
    13  English                             0x0000000107f43344 +[RCNDevice hasDeviceContextChanged:projectIdentifier:] + 325
    14  English                             0x0000000107f3e133 -[RCNConfigFetch fetchAllConfigsWithExpirationDuration:completionHandler:] + 150
    15  English                             0x0000000107f3577f -[FIRRemoteConfig fetchWithExpirationDuration:completionHandler:] + 77

更新:言語選択画面を表示するかどうかは関係ありません。新規インストールでは常に機能し、次回の起動からは機能しなくなります。

これは私が使用している完全なコードです。

-(void)viewDidAppear:(BOOL)animated{
    //Display select language settings
    if (![[NSUserDefaults standardUserDefaults] boolForKey:DISPLAY_LANGUAGE_SETTING])
    {
        NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
        [defaults  setBool:TRUE forKey:DISPLAY_LANGUAGE_SETTING];
        [defaults synchronize];
        //Display Language Screen
        AGSelectLanguageViewController *languageViewController =  [self.storyboard instantiateViewControllerWithIdentifier:@"AGSelectLanguageViewController"];
        self.modalPresentationStyle = UIModalPresentationFullScreen;
        [self presentViewController:languageViewController animated:NO completion:nil];
    }

  [self configFireBase];

}
  -(void)configFireBase{
        // Firebase Configuration
        self.remoteConfig = [FIRRemoteConfig remoteConfig];
       //Enabling development mode
        FIRRemoteConfigSettings *remoteConfigSettings = [[FIRRemoteConfigSettings alloc] initWithDeveloperModeEnabled:YES];
        self.remoteConfig.configSettings = remoteConfigSettings;

        //Set default Remote Config values
        [self.remoteConfig setDefaultsFromPlistFileName:@"RemoteConfigDefaults"];

        [self fetchConfig];
    }

- (void)fetchConfig {
    _discount_percentage = self.remoteConfig[DISCOUNT_PERCENTAGE].numberValue.floatValue;

    long expirationDuration = 3600;

    if (self.remoteConfig.configSettings.isDeveloperModeEnabled) {
        expirationDuration = 0;
    }


    [self.remoteConfig fetchWithExpirationDuration:expirationDuration completionHandler:^(FIRRemoteConfigFetchStatus status, NSError *error) {
        if (status == FIRRemoteConfigFetchStatusSuccess) {
            NSLog(@"Config fetched!");
            [self.remoteConfig activateFetched];
        } else {
            NSLog(@"Config not fetched");
            NSLog(@"Error %@", error.localizedDescription);
        }
    }];
}

どこが間違っていますか?助けてください。

4

1 に答える 1

3

GIPLocale クラスは、ロケールの Google と Apple の名前の間でいくつかのマッピングを行い、その一部として、アプリのロケールを NSUserDefaults から取得します。

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSArray *languages = [defaults objectForKey:@"AppleLanguages"];

デフォルトのエントリが配列ではなく単なる文字列などに設定されていると推測しています-アプリのどこかでその文字列を参照しているかどうかを確認してください。

于 2016-10-18T16:37:38.140 に答える