今天进行很简单的代码测试,代码如下
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的分割线自救就消失了呢?实在搞不懂了。
已进行的操作:
重置过模拟器,检查过配置,等都没有问题
這個問題我也碰到過,模擬器的Scale 如果不是100%的話有時候就會出現這問題,估計是個Bug 吧,在真機上是沒問題的,把模擬器的Scale 設為100%應該也能解決問題。
在真機上運作的情況怎麼樣?
不是bug,而是顯示器解析度不夠高,模擬器縮小了,導致分割線太細了,不能顯示了.
模擬器的bug每個人都有的
覺得是Mac和iPhone之間像素偏差所造成的。 。 。
你把模擬器大小調到100%就行了。這個東西真是坑爹吶! ! ! ! ! ! ! ! ! ! ! !
模擬器的問題,真機就不會有了,我常常碰到這個問題
模擬器有scale…縮放比太小,細的東西都看不見
模擬器的bug
模擬器顯示比例導致的問題,嘗試100%顯示模擬器看是否消失