Is it possible to create a prototype content UITableview in a xib file without using storyboard?

257 views Asked by At

enter image description here

Now I am developing a chating app using pars, without storyboard. I need to create a prototype content UITableview in my chat .xib file. Kindly guide me to solve my issue.

1

There are 1 answers

5
Santu C On

Yes , You can do that.

Drag and drop UITableView on your xib and Select UITableView "Attribute Inspector". Then Select Content as "Static Content" if you want manage UITableView Cell content through xib. Otherwise you can go for delegate methods implementation.

UITableView "Attribute Inspector" >> Content property

enter image description here