我正在使用iPhone SDK 4的iphone
應用,半的TabBar的不可見:((
我的應用程序開始於一個普通視圖
當用戶按下一個按鈕,它進入下一個視圖!這種觀點必須具有Tabbar
,
第一視圖==按鈕==>第二個視圖(具有的TabBar)
這是我的SecondviewController.m
#import "SecondViewController.h"
@implementation SecondViewController
@synthesize lab,tabbar;
- (void)viewDidLoad {
[super viewDidLoad];
[self.view addSubview:tabbar.view];
}
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload {
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (void)dealloc {
[super dealloc];
[lab release];
[tabbar release];
}
@end
它的作品,但我親愛的TabBar的下半部分是不可見的。
你可以設置你的NIB正確..? –
http://stackoverflow.com/questions/12460013/remove-uitabbar-controller/12460244#12460244 – Rajneesh071
你的問題的解決方案是什麼? – Rajneesh071