是否可以在imageView后面添加UITableView?如何添加此图像:
以便用户可以在tableview后面看到它(背景设置为clear)?

最佳答案

以下方法应该有效:

tableView.backgroundColor = UIColor(patternImage: UIImage(named: "your_image_name")!)

正如函数名所暗示的,从您提供的图像创建UIColor
有关更多信息,请参阅Apple文档here

10-04 17:32