码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 中UITableViewController 中tableView 会被状态栏覆盖的问题

时间:2014-10-17 15:28:19      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   sp   div   on   

解决办法在 生命周期函数viewDidAppear中设置即可

1 - (void)viewDidAppear:(BOOL)animated
2 
3 {
4 
5     self.tableView.frame = CGRectMake(0, 20, 320, 480);
6 
7 }

 

iOS 中UITableViewController 中tableView 会被状态栏覆盖的问题

标签:style   blog   color   io   os   ar   sp   div   on   

原文地址:http://www.cnblogs.com/pretty-guy/p/4030971.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!