如何在我的iOS APP中制作可变背景图像

时间:2011-01-08 11:37:33

标签: iphone xcode uiimage

我正在制作iPhone应用程序,我想知道如何将变量背景图像作为背景,用户可以选择其中一个选项?

2 个答案:

答案 0 :(得分:8)

我不知道你想要什么在前台,但基于UIView类的任何东西都有backgroundColor属性,你可以设置为这样的图像:

yourView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"YourImage.png"]];

答案 1 :(得分:0)

它对我不起作用,它起作用的是:

self.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"background.png"]];

我认为是相同但不知道为什么其他答案对我没用。

希望有所帮助