9

我是 iOS 开发的新手,我想知道如何将垂直重复的背景图像添加到我为显示图像数组而创建的 UI 集合视图中?

4

3 回答 3

34

这也可以,我认为比使用背景颜色更正确。直接去backgroundView

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.collectionView.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"yourImage.png"]];

}
于 2013-04-04T13:02:33.113 回答
18
- (void)viewDidLoad
{
    [super viewDidLoad];

    self.collectionView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"imageName.pnd"]];
}
于 2013-04-03T14:25:22.890 回答
4

对于 swift,添加到 viewDidLoad():

    self.collectionView?.backgroundColor = UIColor(patternImage: UIImage(named: "background")!)
于 2016-03-25T20:12:05.787 回答