gpt4 book ai didi

iOS浅亚麻布背景?

转载 作者:IT王子 更新时间:2023-10-29 07:47:24 25 4
gpt4 key购买 nike

我真的很想知道是否有办法获得 iOS 的浅亚麻布背景。这是它的样子: ios maps app open with menu open, map looks like a pealed up piece of paper. It is on an iPhone running a version of iOS before ios6

有没有办法只使用内置的 SDK 来访问它?还是我必须在某处找到这样的图片?


编辑:我不想使用私有(private) API,所以这就是我所做的。我是这样抓取图像的:

CGRect rect = CGRectMake(0.0f, 0.0f, 640.0f, 960.0f);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [[UIColor underPageBackgroundColor] CGColor]);
CGContextFillRect(context, rect);
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *imagepath = [documentsDirectory stringByAppendingPathComponent:@"underPageBackground.png"];
[UIImagePNGRepresentation(image) writeToFile:imagepath atomically:YES];

这是在视网膜分辨率下生成的 png:(单击缩略图打开)

click for full resolution

希望这对某人有用。 :)

最佳答案

使用 [UIColor underPageBackgroundColor]。这是一个 link有用的信息和样本。

关于iOS浅亚麻布背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4694023/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com