Rumah > Soal Jawab > teks badan
今天进行很简单的代码测试,代码如下
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的分割线自救就消失了呢?实在搞不懂了。
已进行的操作:
重置过模拟器,检查过配置,等都没有问题
PHP中文网2017-04-17 17:34:53
这个问题我也碰到过,模拟器的 Scale 如果不是100%的话有时候就会出现这问题,估计是个 Bug 吧,在真机上是没问题的,把模拟器的 Scale 设为100%应该也能解决问题。