一些非常奇怪的事情发生在我身上(对我来说至少很奇怪) 我有一个视图控制器(fileManagerViewController),这个UI基本上是一个空视图 顶部有一个工具栏。我用IB制作了这个UI。在工具栏上我有一些按钮,其中两个按钮用于在两个视图之间切换。我要切换的两个视图的UI是由代码完成的。
-(void) viewDidLoad {
[super viewDidLoad];
fileManagerTableView = [[FileManagerTableView alloc] init];
fileManagerGridView = [[FileManagerGridView alloc] init];
self.view.autoresizingMask = UIViewAutoresizingFlexibleHeight
|UIViewAutoresizingFlexibleWidth;
self.view.autoresizesSubviews=YES;
self.view addSubview:fileManagerTableView.view];
[self.view addSubview:fileManagerGridView.view];
[fileManagerTableView.view setHidden:YES];
}
-(void) loadView {
CGRect fileGridViewFrame = CGRectMake(0.0, 50.0, 1024,768);
fileGridView = [[[AQGridView alloc]
initWithFrame:fileGridViewFrame]
autorelease];
fileGridView.dataSource=self;
fileGridView.delegate=self;
fileGridView.autoresizingMask=UIViewAutoresizingFlexibleWidth|
UIViewAutoresizingFlexibleHeight
fileGridView.autoresizesSubviews=YES;
fileGridView.bounces;
fileGridView.backgroundColor = [[UIColor colorWithPatternImage:
[UIImage imageNamed:@"bg.png"]]];
[self.fileGridView reloadData];
self.view = fileGridView;
}
-(void) loadView {
CGRect fileTableViewFrame = CGRectMake(0.0, 44.0, 1024,768);
fileGridView = [[[UITableView alloc]
initWithFrame:fileTableViewFrame]
autorelease];
fileGridView.dataSource=self;
fileGridView.delegate=self;
fileGridView.autoresizingMask=UIViewAutoresizingFlexibleWidth|
UIViewAutoresizingFlexibleHeight
fileGridView.autoresizesSubviews=YES;
fileGridView.bounces;
fileGridView.backgroundColor = [[UIColor colorWithPatternImage:
[UIImage imageNamed:@"bg.png"]]];
[self.fileGridView reloadData];
self.view = fileGridView;
}
结果是,正如我说的那样奇怪,如果应用程序以纵向模式启动,所有工作正如我所期望的那样,两个视图在纵向和横向模式下都能很好地呈现。如果应用程序以横向方向启动设备,则视图不会填满整个屏幕。看看这个 screenshot
答案 0 :(得分:0)
在IB内部,在布局控件中,使用调整大小控件。要访问所述控件,请在检查器(Cmd + 3)中打开第三个选项卡
此外,在viewWillAppear方法内,在视图上调用setNeedsDisplay。