内容简介:这是iOS 7中分组表视图的预期外观.如果打开“设置”应用程序,您将在表格顶部和表格视图中的每个部分(颜色为灰色)之间看到类似的分隔条.代码日志版权声明:翻译自:http://stackoverflow.com/questions/17679052/uitableview-is-getting-a-gap-on-top
我不知道现在要问的是适当的问题.我在表视图上使用Xcode 5(预览版).现在的问题是如果我的表视图被选择为组,我在第一个单元格和表的顶部边缘之间有差距.
以下是适用视图委托的代码
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { return 8; } - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *simpleTableIdentifier = @"SimpleTableItem"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier]; if (cell == nil) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier]; } cell.textLabel.text = [NSString stringWithFormat:@"cell %d",indexPath.row]; return cell; }
当我在xib中选择组时,下面的图片
但是,如果我正在切换到普通的,表是正常的
对这种情况的任何想法.我上了谷歌,但似乎没有什么.任何帮助在这里欢迎.
这是iOS 7中分组表视图的预期外观.如果打开“设置”应用程序,您将在表格顶部和表格视图中的每个部分(颜色为灰色)之间看到类似的分隔条.
代码日志版权声明:
翻译自:http://stackoverflow.com/questions/17679052/uitableview-is-getting-a-gap-on-top
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 小程序系列(一)——自定义顶部导航
- iphone – 顶部和底部透明渐变的UITableView
- iOS 去除 Webview 键盘顶部工具栏
- Android:如何将十字图标放在自动完成textView的顶部
- JeeSite 4.1.3 发布,支持一级菜单在顶部,各种组件改进
- JeeSite 4.1.3 发布,支持一级菜单在顶部,各种组件改进
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Powerful
Patty McCord / Missionday / 2018-1-25
Named by The Washington Post as one of the 11 Leadership Books to Read in 2018 When it comes to recruiting, motivating, and creating great teams, Patty McCord says most companies have it all wrong. Mc......一起来看看 《Powerful》 这本书的介绍吧!