使用动态壁纸作为应用背景

时间:2013-11-24 09:49:50

标签: iphone dynamic background ios7 wallpaper

是否可以预设其中一个动态壁纸用作我的应用的背景?它不一定是用户当前正在使用的那个,因为我知道没有公共API,但是我在编码时选择的任何人都会这样做。

1 个答案:

答案 0 :(得分:0)

我不确定,但我认为没有公共API可以从应用程序访问以编程方式动态的壁纸。

您最好的尝试可能是通过创建自己的动画来模仿动态壁纸:

NSArray *frames = [NSArray arrayWithObjects:[UIImage imageNamed:@"firstFrame.png"],
                       [UIImage imageNamed:@"secondFrame.png"],
                       // add other frames
                       , nil];
UIImageView *dynamicWallpaper = [[UIImageView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 480.0f)];
dynamicWallpaper.animationImages = frames;
dynamicWallpaper.animationDuration = 60.0f; // seconds
dynamicWallpaper.animationRepeatCount = 0; // 0 = loops forever
[dynamicWallpaper startAnimating];
[self.view addSubview:dynamicWallpaper];
[dynamicWallpaper release];

无论如何,这样做需要很多图片......