찾다

 >  Q&A  >  본문

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일 전974

모든 응답(13)나는 대답할 것이다

  • 黄舟

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

    6s의 해상도는 3x이고, 일반 화면의 해상도는 1x입니다. 일부 세부 사항은 원래대로 표시되지 않습니다. MBP에서는 이 문제가 없습니다.

    회신하다
    0
  • 黄舟

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

    에뮬레이터를 100%로 켜서 보세요

    회신하다
    0
  • 天蓬老师

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

    시뮬레이터 버그

    회신하다
    0
  • 취소회신하다