首先我是一個n00b。 經過3天的努力和研究,我決定獲得一些外部幫助。音頻本地化
我做什麼,我的項目:
我做一本書的孩子。 現在我正在本地化我的應用程序。 的圖片我沒有這樣說:
UIImage *schrift = [UIImage imageNamed:NSLocalizedString (@"Schrift_en.png", nil)];
image = [[UIImageView alloc] initWithImage:schrift];
image.frame = CGRectMake(75.5, 80, 617, 137);
[self.view addSubview:image];
[image release];
爲我的偉大工程:)
現在我試圖做同樣的我講述AUDIOFILE但不容弄清楚如何。
NSString *path = [[NSBundle mainBundle] pathForResource:@"Vorwort" ofType:@"mp3"];
AVAudioPlayer* theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
self.audioPlayer = theAudio;
[theAudio release];
如何更改上面的代碼,使其工作,以及如何定義ofType:@在Localizable.strings文件「MP3」?
Google無法幫助我。 任何想法?慢慢地,但肯定我失去了我的動力。
如果有人能幫助我,這將會非常酷! 在此先感謝 Planky
謝謝,很好! – Planky