Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 iphone 开发的新手。当我尝试为我的表格视图显示背景图像时,图像出现在每个单元格中。我想显示适合屏幕的单个图像,而不是在每个单元格中显示。请帮助我。谢谢。
使您的表格视图成为 a 的子视图UIView(我们称之为parentView)。然后,您可以使表格视图的背景清晰以显示UIView位于下方的位置。然后将其设置UIView为包含图像视图:
UIView
parentView
self.tableView.backgroundColor = [UIColor clearColor]; [self.parentView addSubview:myImageView];