在表格视图单元格中使用自定义XIB

时间:2018-10-13 16:23:49

标签: ios swift xcode

我已经按照本教程创建了一个自定义.xib,我打算在表格视图的单元格中使用它:

https://medium.com/@brianclouser/swift-3-creating-a-custom-view-from-a-xib-ecdfe5b3a960

这是我创建的.xib类:

class UserView: UIView {

    @IBOutlet var view: UIView!
    @IBOutlet weak var username: UILabel!

    override init(frame: CGRect) {
        super.init(frame: frame)
        initialize()
    }

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
        initialize()
    }

    private func initialize() {
        Bundle.main.loadNibNamed("UserView", owner: self, options: nil)
        addSubview(view)
        view.frame = self.bounds
        view.autoresizingMask = [.flexibleHeight, .flexibleWidth]
    }

}

之前,我是在情节提要中创建表格视图单元格,但后来我意识到我想要一个更灵活的视图,以便可以在应用程序的不同部分中使用它,因此我创建了上述自定义。 xib,UserView

我已更新情节提要中的表格视图单元以使用自定义.xib:

https://i.stack.imgur.com/t7Tr7.png

这是在创建自定义.xib(即在情节提要中进行布局)之前,我的表视图控制器类的外观:

class UserTableViewController: UITableViewController {

    // MARK: Properties

    let provider = MoyaProvider<ApiService>()
    var users = [User]()

    override func viewDidLoad() {
        super.viewDidLoad()

        tableView.estimatedRowHeight = 100
        tableView.rowHeight = UITableViewAutomaticDimension

        // Fetch the user by their username
        provider.request(.getUsers()) { result in
            switch result {
            case let .success(response):
                do {
                    let results = try JSONDecoder().decode(Pagination<[User]>.self, from: response.data)

                    self.users.append(contentsOf: results.data)

                    self.tableView.reloadData()
                } catch {
                    print(error)
                }
            case let .failure(error):
                print(error)
                break
            }
        }
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }

    override func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return users.count
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let cellIdentifier = "UserTableViewCell"

        guard let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as? UserTableViewCell  else {
            fatalError("The dequeued cell is not an instance of UserTableViewCell.")
        }

        let user = users[indexPath.row]

        cell.username.text = user.username

        return cell
    }

}

这是表格视图单元格类:

class UserTableViewCell: UITableViewCell {

    //MARK: Properties

    @IBOutlet weak var userView: UserView!

    override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }

    override func setSelected(_ selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state
    }

}

我的问题是,如何更新上面的表视图控制器类以使用自定义.xib,而不使用情节提要布局?

1 个答案:

答案 0 :(得分:0)

您可以使用2种方式:

创建UITableViewCell(更好)

1)将UIView更改为UITableViewCell

class CustomTableViewCell: UITableViewCell { 

    ...

    class var identifier: String {
        return String(describing: self)
    }
}

2)注册您的手机

override func viewDidLoad() {
    super.viewDidLoad()

    self.tableView.registerNib(UINib(nibName: CustomTableViewCell.identifier, bundle: nil), forCellReuseIdentifier: CustomTableViewCell.identifier)
    ...
}

3)使用cellForRow(at:)

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCell(withIdentifier: CustomTableViewCell.identifier) as! CustomTableViewCell
    cell.username.text = user.username

    return cell
}

或将视图作为子视图添加到单元格中(仅在极少数情况下)

1)将此添加到UserView

class UserView: UIView {

    ...

    class func fromNib() -> UserView {
        return UINib(nibName: String(describing: self), bundle: nil).instantiate(withOwner: nil, options: nil)[0] as! UserView
    }

}

2)使用cellForRow(at:)

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cellIdentifier = "UserTableViewCell"

    guard let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as? UserTableViewCell  else {
        fatalError("The dequeued cell is not an instance of UserTableViewCell.")
    }

    let userView = UserView.fromNib()
    let user = users[indexPath.row]
    userView.username.text = user.username

    //Use frame size, but for me better to add 4 constraints
    userView.frame = CGRect(x: 0, y: 0, width: cellWidth, height: cellHeight)

    cell.contentView.addSubview(UserView)

    return cell
}