ios - 为什么cell的分割线自己消失?
黄舟
黄舟 2017-04-17 17:32:53
0
13
977

今天进行很简单的代码测试,代码如下

extension ViewController:UITableViewDataSource,UITableViewDelegate
{

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return restaurant.restaurant.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cellIdentifier = "Cell"
    let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath)
    
    cell.textLabel?.text = restaurant.restaurant[indexPath.row] as? String
    
    return cell
}

}
运行结果如下

我想知道为什么cell的分割线自救就消失了呢?实在搞不懂了。
已进行的操作:
重置过模拟器,检查过配置,等都没有问题

黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

Antworte allen(13)
黄舟

6s的分辨率是3x,普通屏幕是1x,有些细节展示不出原貌。我在MBP上没这个问题。

黄舟

模拟器放到 100% 就能看到了

Peter_Zhu

模拟器的bug

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage