cari

Rumah  >  Soal Jawab  >  teks badan

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 hari yang lalu968

membalas semua(13)saya akan balas

  • PHP中文网

    PHP中文网2017-04-17 17:34:53

    这个问题我也碰到过,模拟器的 Scale 如果不是100%的话有时候就会出现这问题,估计是个 Bug 吧,在真机上是没问题的,把模拟器的 Scale 设为100%应该也能解决问题。

    balas
    0
  • 巴扎黑

    巴扎黑2017-04-17 17:34:53

    在真机上运行的情况怎么样?

    balas
    0
  • PHP中文网

    PHP中文网2017-04-17 17:34:53

    不是bug,而是显示屏分辨率不够高,模拟器缩小了,导致分割线太细了,不能显示了.

    balas
    0
  • 高洛峰

    高洛峰2017-04-17 17:34:53

    模拟器的bug每个人都有的

    balas
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-17 17:34:53

    觉得是Mac和iPhone之间像素偏差引起的。。。

    balas
    0
  • 阿神

    阿神2017-04-17 17:34:53

    你把模拟器大小调到100%就行了。这个东西真是坑爹呐!!!!!!!!!!!!

    balas
    0
  • 迷茫

    迷茫2017-04-17 17:34:53

    模拟器的问题,真机就不会有了,我是常常碰到这个问题

    balas
    0
  • 巴扎黑

    巴扎黑2017-04-17 17:34:53

    模拟器有scale……缩放比太小,细的东西都看不见

    balas
    0
  • 怪我咯

    怪我咯2017-04-17 17:34:53

    模拟器的bug

    balas
    0
  • ringa_lee

    ringa_lee2017-04-17 17:34:53

    模拟器显示比例导致的问题,尝试100%显示模拟器看是否消失

    balas
    0
  • Batalbalas