重温iOS设备标准背景图像

Abr*_*odj 1 cocoa-touch image ios

是否可以从应用程序访问Apple的标准背景图像(壁纸)之一?

nev*_*ing 5

一些Apple模式可供使用.查看UIColor"系统颜色"文档.以下是您可以使用的一些内容:

groupTableViewBackgroundColor(细条纹)
viewFlipsideBackgroundColor
scrollViewTexturedBackgroundColor(来自通知等的新亚麻纹理)
underPageBackgroundColor(在地图中的页面卷曲下)

像这样使用它:

UIColor *myBackgroundColor = [UIColor scrollViewTexturedBackgroundColor];
Run Code Online (Sandbox Code Playgroud)

请参阅此处的示例.