A very traditional way and existing with any version of Xcode.
- Right click on the left pane
- Select a new file
- Choose iOS
- Choose user interface
- Select Empty, then next
- Give the file name.
This will create an empty xib, now drag and drop the UITableViewCell and give the class name as you specified in the .h and .m file or in the quick file name.

Swift class with UITableViewCell
import UIKit class CustomCell: UITableViewCell { @IBOutlet weak var lblName : UILabel! override func awakeFromNib() { super.awakeFromNib()
Hasya
source share