Reputation: 505
I'm trying to make a view controller with view in separate XIB file.
If I add tableview
then I couldn't specify cell type (static or dynamic):
But if I add tableview to storyboard - everything works as expected:
Is it xcode6 bug or I'm doing something wrong?
Upvotes: 0
Views: 2519
Reputation: 7139
Static table view cells are only available when using storyboards. Take a look at this answer: How to use static cells in UITableView without using Storyboards?
Upvotes: 2