search

Home  >  Q&A  >  body text

ios - 为什么cell的分割线自己消失?

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

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的分割线自救就消失了呢?实在搞不懂了。
已进行的操作:
重置过模拟器,检查过配置,等都没有问题

黄舟黄舟2772 days ago973

reply all(13)I'll reply

  • 黄舟

    黄舟2017-04-17 17:34:53

    The resolution of 6s is 3x, and the resolution of ordinary screen is 1x. Some details cannot be displayed as they are originally. I don't have this problem on MBP.

    reply
    0
  • 黄舟

    黄舟2017-04-17 17:34:53

    Put the emulator to 100% to see it

    reply
    0
  • 天蓬老师

    天蓬老师2017-04-17 17:34:53

    Simulator bug

    reply
    0
  • Cancelreply