I'm trying to create settings bundle for custom keyboard extension on ios 8. I've added settings bundle to keyboard extension target. Then when the keyboard view is loaded I'm trying to access the setting bundle in following way.
BOOL autoCapitalizationEnabled = [[NSUserDefaults standardUserDefaults] boolForKey:@"autoCapitalizationEnabled"];
the result is always 0, it seems that program can't access to setting bundle file.
Does anyone has the issue before with extensions settings bundle? By the way , the thing is not related with the default values of settings bundle, because every time I disable and enable this property on settings before keyboard launched to force the default value.