0
我正在使用UIBarButtonSystemItemSave在我的iPhone應用程序中獲取保存按鈕。我的想法是使用這些系統項目,我應該爲這些按鈕自動定位。但它仍然說「保存」所有語言。他們不是自動翻譯的嗎?我需要自己做嗎?iPhone:UIBarButtonSystemItemSave和本地化
我的代碼:
UIBarButtonItem* saveItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave
target:self action:@selector(saveButtonClicked:)];
self.navigationItem.rightBarButtonItem = saveItem;
[saveItem release];
出於某種原因,我的模擬器沒有重新加載,一定是緩存。我刪除了應用程序,並清理並重建,現在它正在工作。 – mrrmatinsi 2010-11-26 08:40:49