Это то, что я получаю от поиска в Google, но, очевидно, это не то, что мне нужно:
- (void)applicationDidFinishLaunching:(UIApplication *)application
{
// add the tab bar controller to the window
[window addSubview:[tabBarController view]];
// load the image, create a view with the image
NSString* dirPath = [[NSBundle mainBundle] bundlePath];
NSString* imageFile = [dirPath stringByAppendingString:@"homebackground.png"];
UIImageView* view = [[UIImageView alloc] initWithImage: [UIImage imageNamed:imageFile]];
[[tabBarController tabBar] addSubview: view];
}
Да, файл изображения загружается нормально .. Я думаю, что вышеупомянутое делает попытку изменить bg области панели навигации панели вкладок? Я не уверен.
Кто-нибудь знает, как бы я сменил реальный фон на изображение?
Спасибо!