iOS7适配有关问题 UITableView上方出现空白
iOS7适配问题 UITableView上方出现空白
在viewDidLoad中加入:
m_tableView.tableHeaderView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, m_tableView.bounds.size.width, 0.01)];
即可。