关于UINavigationController与UITableView聚合的发现

前端之家收集整理的这篇文章主要介绍了关于UINavigationController与UITableView聚合的发现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天写iOS项目时,发现了几个问题,于是停下项目,好好地进行了一番研究(已发现文中问题的亲们可跳过,哈哈):

当我们的视图(控制器的视图)中有导航条,即导航控制器自动为我们添加的导航条时。

通过导航控制器来控制视图:

  1. self.window.rootViewController=[[UINavigationController alloc] initWithRootViewController:[[ViewController alloc] init]];

我们在控制器的视图中添加子视图时,子视图显示内容的y坐标是相对于视图的最顶端来说的。如图:

添加视图的代码如下:

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. CGFloat width=self.view.frame.size.width;
  4. self.view.backgroundColor=[UIColor whiteColor];
  5.  
  6. UIView* view1=[[UIView alloc] init];
  7. view1.frame=CGRectMake(0,0,width,64);
  8. [self.view addSubview:view1];
  9. view1.backgroundColor=[UIColor redColor];
  10.  
  11. UIView* view2=[[UIView alloc] init];
  12. view2.frame=CGRectMake(0,64,64);
  13. [self.view addSubview:view2];
  14. view2.backgroundColor=[UIColor yellowColor];
  15. }

上面的显示是显而易见的。

但是当我们添加UITableView时问题就来了。

在视图中手动添加UITableView

添加UITableView之前,如果在控制器的视图中添加了另外一个子视图的话,那么UITableView显示内容(包括tableHeaderView、tableFooterView和UITableViewCell)是以控制器的顶端为y的坐标起点的。

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. CGFloat width=self.view.frame.size.width;
  4. CGFloat height=self.view.frame.size.height;
  5.  
  6. self.view.backgroundColor=[UIColor whiteColor];
  7.  
  8. UIView* view1=[[UIView alloc] init];
  9. view1.frame=CGRectMake(0,100);
  10. [self.view addSubview:view1];
  11. view1.backgroundColor=[UIColor greenColor];
  12.  
  13.  
  14. self.tableView=[[UITableView alloc] initWithFrame:CGRectMake(0,height) style:UITableViewStylePlain];
  15. self.tableView.dataSource=self;
  16. [self.view addSubview:self.tableView];
  17. self.tableView.backgroundColor=[UIColor redColor];
  18.  
  19.  
  20. }

显示效果如图:

但是,如果在添加UITableView之前并没有在控制器的视图中添加别的子视图,则UITableView显示内容是以导航栏的底部为y的坐标起点的。

  1. - (void)viewDidLoad {
  2. [super viewDidLoad];
  3. CGFloat width=self.view.frame.size.width;
  4. CGFloat height=self.view.frame.size.height;
  5.  
  6. self.view.backgroundColor=[UIColor whiteColor];
  7.  
  8.  
  9.  
  10. self.tableView=[[UITableView alloc] initWithFrame:CGRectMake(0,height) style:UITableViewStylePlain];
  11. self.tableView.dataSource=self;
  12. [self.view addSubview:self.tableView];
  13. self.tableView.backgroundColor=[UIColor redColor];
  14.  
  15. UIView* view1=[[UIView alloc] init];
  16. view1.frame=CGRectMake(0,100);
  17. [self.view addSubview:view1];
  18. view1.backgroundColor=[UIColor greenColor];
  19.  
  20.  
  21. }

注意:不管怎么设置,只是UITableView显示内容的y坐标发生了改变,UITableView自身还是如平常那样。

猜你在找的设计模式相关文章