我正在使用最新的 SDK 开发一个 iOS 应用程序。
我从我做的一个 Android 应用程序中获得了这个资源:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gauge_background">
<gradient
android:startColor="#449def"
android:endColor="#2f6699"
android:angle="270" />
<stroke
android:width="1dp"
android:color="#2f6699" />
<corners android:radius="30dp" />
<padding
android:bottom="10dp"
android:left="10dp"
android:right="10dp"
android:top="10dp" />
</shape>
并想在我的 iOS 应用程序中使用它。
你知道是否有办法加载这个 xml 并将其显示为 UIView backgroundColor?
像这样的东西:
self.backgroundColor =
[[UIColor alloc] initWithPatternImage:[UIImage imageNamed:imageName]];