iOS5中UITableViewCell的分隔符没有隐藏
在TableView Controller中,viewWillAppear设置为:
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
self.tableView.separatorColor = [UIColor clearColor];
在iOS4.x中一切正常,但在iOS5中,分隔符仍然出现!更奇怪的是,那条线只是改变了每个不同单元格的高度,正常尺寸,微小尺寸甚至消失,同时在表格视图中上下拖动。〜!?行为是不可预测的...
有人遇到过这种情况吗?
in TableView Controller, viewWillAppear, it is set as:
[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone];
self.tableView.separatorColor = [UIColor clearColor];
Everything works just fine in iOS4.x, but in iOS5, the separator still appear! And more strange, that line just change the height for every different cell, normal size, tiny size and even disappear, while dragging up and down for the table view.~!? The behaviors are unpredictable...
Anyone encounter this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需取消选中“TableView 属性”>从 Xcode 将分隔符设置为 None,然后清理并构建您的项目.. 它的作品!!!... 有时它在 iOS5 中无法通过代码运行
Just uncheck TableView Property > Separator to None from Xcode,then Clean And Build your project.. its Works!!!... Sometime it does not work by code in iOS5