4

我想为我的应用程序使用这样的背景。此图像来自 ios 6。它是以编程方式将其附加到视图的方式吗?不想在项目中包含此图像并使用 UIImage 视图,因为它已经存储在 ios 中

在此处输入图像描述

4

2 回答 2

6

是的,您可以通过在Attributes inspector中选择View of your View来做到这一点,选择其他,然后选择第三个选项卡 -> iPhone/iPad SDK -> ScrollViewTexturedBackground(如下面的屏幕截图所示)。

在此处输入图像描述

于 2013-03-28T14:10:04.643 回答
2

UIColor 类有以下类方法

+ (UIColor *)scrollViewTexturedBackgroundColor

尝试设置背景颜色。

myView.backgroundColor = [UIColor scrollViewTexturedBackgroundColor];
于 2013-03-28T14:15:19.953 回答