IOS开发可以把一张URL请求回来的图片直接设置为手机壁纸吗
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励20(财富值+成长值)
先存到PILST
NSMutableDictionary *info = [[NSMutableDictionary alloc]init];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:[NSString stringWithFormat:@"pic_%d.png", conut_]]; // 保存文件的名称
[info setObject:filePath forKey:@"img"];
[specialArr addObject:info];
2.使用图片
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:[NSString stringWithFormat:@"pic_%d.png", (int)current]]; // 保存文件的名称
UIImage *img = [UIImage imageWithContentsOfFile:filePath];
3.用你的方法将 图片变为壁纸, 不知道怎么用代码直接换壁纸。 你将图片保存到手机再换吧