目前我正在構建一個天氣iPhone應用程序。所以,對於這個問題:我正在使用一個API來提供英文版的Response。現在我想要做的是將回應翻譯成德語。這是否有可能?我已經翻譯的時間和平日是這樣的:iOS翻譯文本API
- (id)init {
if (self = [super init]) {
_hourlyFormatter = [[NSDateFormatter alloc] init];
_hourlyFormatter.dateFormat = @"h a";
_hourlyFormatter.locale=[[NSLocale alloc] initWithLocaleIdentifier:@"de_DE"] ;
_dailyFormatter = [[NSDateFormatter alloc] init];
_dailyFormatter.dateFormat = @"EEEE";
_dailyFormatter.locale=[[NSLocale alloc] initWithLocaleIdentifier:@"de_DE"] ;
}
return self;
}
啊,接口是完全基於所以沒有接口文件,如果所需要的代碼(至極,我不覺得,但你永遠不知道,胡:)?)
所以在我的情況下,我想翻譯的條件。例如Clear或Rain。
你可能會和我一起玩嗎?我使用的API是openweathermap.org。
如果你想用戶谷歌翻譯,這個鏈接將幫助你:[鏈接](http://stackoverflow.com/a/42113720/1616855) –