我正在使用iPhone sdk 4创建iphone
应用程序,
我的应用程序以普通视图开始!
当用户按下按钮时,它会转到下一个视图,此视图必须有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
它可以工作,但我亲爱的标签栏的下半部分不可见。
答案 0 :(得分:1)
这是因为您的导航栏或状态栏已经实现,因为标签栏低于屏幕的原始高度,即480像素。在您的nib文件中单击视图,然后在模拟的指标中尝试将顶部栏更改为无,然后查看。也许这会有所帮助!!。
答案 1 :(得分:0)
您尝试将标签栏添加到主窗口,它将显示为
[[[[UIApplication sharedApplication] windows] lastObject] addSubview: tabbar.view];