如何在iPhone中将图像设置为背景图像

时间:2011-03-24 19:43:04

标签: iphone objective-c

我有一个疑问,我如何将我的iPhone中的ImageView图像对象设置为背景我使用sdk 4.2,在iPhone 4中可以在iPhone中设置背景图像...所以我的情况是,如果有人喜欢然后他们应该将UIAlertView设置为背景...... OK&在ok选项中取消选项,它会自动将图像设置为背景。

我的目标如下:

UIImageView *imgViewObj = [[UIImageView alloc]init];
[imgView setImage:[UIImage imageWithName:@"sampleImage.png"]];

我必须将此imgView obj设置为背景图像...

2 个答案:

答案 0 :(得分:3)

不,您无法以编程方式在iOS中设置用户的壁纸(无论如何)。你可以在JB设备上做到这一点,但这不会让你进入Apple应用程序商店。

答案 1 :(得分:2)

如果您在应用程序之外谈论iPhone背景时,这是一个重复的问题。否则,在您自己的应用程序中,只需将根视图层的内容设置为您希望的CGImage。

Setting iPhone wallpaper (locked screen background) programmatically?

How to set iPhone Wallpaper Programmatically

change wallpaper via iphone app

How to change wallpaper in iPad programmatically?