如何在UITableView中使用IBDesignable类

时间:2018-07-19 20:04:30

标签: ios swift xcode ibdesignable

我是SwiftXcode的初学者,我想知道在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
    }

我该如何实现?谢谢您的答复。

0 个答案:

没有答案