尝试使用预定义的图像创建结构的实例。不确定结构或实例代码是否已关闭

时间:2015-02-09 16:09:44

标签: ios swift struct instance

所以我创建了以下结构:

import Foundation
import UIKit

struct restaurantmodel {
    var restitle: String
    var restype: String
    var resimage: UIImage(named: "")
}

和这个结构的实例

let restaurant1 = restaurantmodel(
    restitle: "earth cafe",
    restype: "Chicken",
    resimage: UIImage(named: "earth.png")
)

我在结构和实例中尝试了许多不同的措辞(图像与图像视图对比图像视图(命名为:&#34;&#34;),我对任何变体都没有运气。< / p>

有人能告诉我如何在结构中引用图像视图,然后如何在同一个结构中指定实例中的图片?

1 个答案:

答案 0 :(得分:1)

您可以像这样创建结构

struct RestaurantModel{
    var restitle: String
    var restype: String
    var resimage: UIImage?
}

并创建一个像这样的实例

let restaurant = RestaurantModel(restitle: "Test",
    restype: "Test",resimage: UIImage(named: "1.png"))