dropDown.dataSource = [" Car"," Motorcycle"," Truck"] // static
//需要在下拉数据源中传递的数组。
public var pMaster = ProductMaster
//如何为数据源传递动态数组。
selectProduct.dataSource = ["选择产品类型","工业润滑油","汽车润滑油"," GREASES"] //静态
selectProduct.dataSource = pMaster //错误无法将[ProductMaster]指定为[String]类型
答案 0 :(得分:0)
如错误所述,您必须将String数组([String]
)分配给数据源,而不是自定义对象([ProductMaster]
)。