iphone: Settings.bundle retorna o valor nulo

Eu estava usando o xCode 3.2 e, em seguida, movido para o xCode 4.2 e obtendo alguns valores de Settings.bundle ... ele estava funcionando bem.

Quer dizer, enquanto eu preciso editar alguns valores em Settings.bundle, mas o arquivo Root.plist não estava aparecendo, então eu sigo o procedimento abaixo, mas não fiz nenhuma alteração no arquivo.

1) Click on the Settings.Bundle file, go over to the utilities window,
and look in the File Inspector.
2) Using the drop-down, change the file type to 'Application Bundle'

Depois disso, pude ver Root.plist, mas agora não conseguia obter seus valores no aplicativo. Na verdade, ficandoNulo em vez de valor.

Abaixo está o código e a imagem de Settings.bundle

NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
host = [defaults stringForKey:@"meter_preference"];
if(host == nil)
{
    host = @"10.20.20.1";
    DDLogError(@"Meter host is nil from NSUserDefaults, defaulting to %@", host);
}