Create UITableViewCell in two types iOS swift
Solution:
1) In iOS you can create tableViewCell inside your tableView and assign a class.
Then in cellforRow you can use the cell using reusableIdentifier.
2) You can also create a cell in xib and insert a cell inside that and assign a class to that cell.Then in your ViewController Viewdidload method register that cell using the xib and cell identifier.Like below
1) In iOS you can create tableViewCell inside your tableView and assign a class.
Then in cellforRow you can use the cell using reusableIdentifier.
2) You can also create a cell in xib and insert a cell inside that and assign a class to that cell.Then in your ViewController Viewdidload method register that cell using the xib and cell identifier.Like below
self.tableView.register(UINib(nibName: "Xibname", bundle: nil), forCellReuseIdentifier: "tableCell")
After that same as reuse the cell in the cellforRow delegate method.
Comments
Post a Comment