Xamarin iOS - 指定用于资产库

时间:2018-01-04 16:21:39

标签: xamarin xamarin.ios

我定义了以下图片资源(FSDirectButton)......

enter image description here

如何在Xamarin xib设计器中指定一个按钮来使用它作为它的图像?

enter image description here

当我在属性窗口中选择“图像”选项时,我看到的是存储在“图像”文件夹中的图像。

enter image description here

我继承了这个应用程序,最初是在旧版本的Xamarin iOS中完成的,所以不确定这是否影响了事情......

但是我想将图像资源库用于我的按钮,但我不确定如何在设计器中指定要使用哪个图像?或者我必须在代码中运行它吗?

1 个答案:

答案 0 :(得分:0)

Look at this video.它可以帮到你,但会引发一些新的错误。享受

您还可以在ViewDidLoad()方法中设置Image from Asset目录。 例如:

//get image set from asset catalog
var imageFromBunde = UIImage.FromBundle("ImageSet"); //ImageSet - name of your image set in Asset catalog
myImage.Image = imageFromBundle;