是否有等效的 R.drawable。单点触控?我还在寻找一种将 xml 图形资源定义设置为 UIView 或子类的背景的方法。
问问题
123 次
1 回答
1
你在这里是另一个世界。iOS 没有您在 Android 上使用的功能。
一般的做法是在 MonoTouch 中使用静态类:
public static class Resources
{
public static readonly UIImage Background = UIImage.FromFile("Background.png");
}
并在 C# 代码中需要它的任何地方使用它。如果您在 XIB 文件中设置图像,它将使用UIImage.FromBundle()
,跨视图缓存图像。 UIImage.FromFile()
但是,从静态类中使用它通常会更好。
在此处查看有关 UIImage 加载和 MonoTouch 的更多信息:http://docs.xamarin.com/ios/tutorials/Working_with_Images?highlight=images ( 接近底部)
于 2012-07-09T14:39:16.673 回答