所以我创建了以下结构:
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>
有人能告诉我如何在结构中引用图像视图,然后如何在同一个结构中指定实例中的图片?
答案 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"))