我正在使用 Xcode 4.3 中提供的主从模板创建一个 iPad 应用程序。我的主表视图充当详细视图的导航菜单,并且菜单项将被修复。所以我基本上并不完全需要滚动视图,因此我将其关闭。
self.tableView.scrollEnabled = NO;
现在我需要在主菜单底部显示一个页脚,如单元格对齐,就像在 Twitter iPad 应用程序中一样。单元格应以横向和纵向模式出现在底部。有人可以给我一些关于如何实现这一点的提示吗?
我在一些博客上阅读了有关使用 UIView 并将其设置为 UITableView.tableFooterView 的内容,例如...
// I'll have to do calculations of frame height/x/y for both orientations
// to make the view appear at bottom - IS THERE A SIMPLER WAY???
UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 944, self.tableView.frame.size.width, 60)];
UILabel *logo = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 60)];
logo.text = @"This is the Footer.";
[footerView addSubview:logo];
self.tableView.tableFooterView = footerView;