user2786037
user2786037

Reputation: 505

xcode6 static tableview in xib

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): enter image description here

But if I add tableview to storyboard - everything works as expected: enter image description here

Is it xcode6 bug or I'm doing something wrong?

Upvotes: 0

Views: 2519

Answers (1)

LS_
LS_

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

Related Questions