我是Swift
和Xcode
的初学者,我想知道在IBDesignable
中使用UITableView
类的实践。我在班级中设计了卡片,以便直接在故事板上看到结果,但是我需要在此功能的UITableView
中动态修改一些标签,UIImage和其他组件:
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CardCell
let cardData: Card
cardData = self.card[indexPath.row]
// Here I want to catch the card what I design in the class IBDesignableCard to set the IBDesignableCard.label, IBDesignableCard.userImage ...
return cell // And here return the IBDesignableCard
}
我该如何实现?谢谢您的答复。