Tableview背景在模拟器上显示,但在设备上播放时为白色

时间:2016-06-28 17:39:07

标签: ios swift uitableview tableview

我目前有一个具有清晰背景颜色的tableview,因此可以看到它下面的图像。在模拟器上它很棒:

enter image description here

但是当它在设备上播放时,背景变为白色:

enter image description here

该应用程序仍然可以正常运行,但保留背景图像会很不错。 这是我的代码:

if(!isset($_GET['UniqueKey'] {
    header('location: localhost:8888/documents/index.php?UniqueKey='.$row['name']);
}

2 个答案:

答案 0 :(得分:0)

在您的tableview数据源中尝试添加以下代码,它在我的案例中有效

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell=tableView.dequeueReusableCellWithIdentifier("cellidentifier")!
    cell.backgroundColor=UIColor.clearColor()
    return cell
}

答案 1 :(得分:0)

可能有两个原因。 uitableviewcell背景不明确 您的图像引用未添加到正在运行的项目目标中。它发生了一些时间。请仔细检查。