.h .m とxibファイルを一緒に作成する必要がありますか? おすすめですか?
後でTextAudioViewController.xibを追加し、それをTextAudioViewControllerクラスに関連付けました。各アウトレットを追加しました。
ViewDidLoad にエラーはありません。ただし、TabBar をタップした後もビューは空のままです。
すべてのファイルをまとめて作成しなかったためでしょうか。xib ファイルとクラス ファイルの間のミッシング リンクのようなものですか?
別のクラスで、.h .m と xib を一緒に作成し、TabBar をタップした後にビューが正常に読み込まれました...
編集済み
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
if (self.tabBarController == nil)
{
NSArray* languages = [NSLocale preferredLanguages];
NSString* currentLang = [languages objectAtIndex:0];
NSString* path = @"";
if ([currentLang isEqual: @"en"] || [currentLang isEqual: @"fr"] || [currentLang isEqual: @"es"])
{
path = [[NSBundle mainBundle] pathForResource:currentLang ofType:@"lproj"];
}else{
path = [[NSBundle mainBundle] pathForResource:@"en" ofType:@"lproj"];
}
selectedBundle = [NSBundle bundleWithPath:path];
[self startApplication];
}
return YES;
}