我使用SWRevealViewController作为我的应用程序中的菜单。从今天起,该应用程序仅适用于iPhone。现在我想为iPad做好准备,但是有一个问题(看看图片。第一个显示iPhone上的应用程序(看起来很正常),第二个显示在iPad上(看起来很不一样))。 / p>
为什么iPad上有白色?
感谢您的帮助!
答案 0 :(得分:0)
我自己解决了这个问题。
对于菜单,您使用tableView(Controller)。在tableView或tableViewController的类中,您需要添加以下函数:
override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
cell.backgroundColor = UIColor.clearColor()
}