Mehmet AKYOL
Mehmet AKYOL

Reputation: 1666

Changing UITableView style as "Grouped" Causes Crash

Changing UITableView style from Interface Builder (.xib file not storyboard) causes a crash on xCode 9. I think its an apple bug. But Is there anyone that found a solution ?

enter image description here

Upvotes: 22

Views: 848

Answers (2)

Jayprakash Dubey
Jayprakash Dubey

Reputation: 36447

This issue has been resolved in Xcode 9.1. Release not Xcode9.1

Refer this release note for detail.

You can download DMG/XIP file from this link.

Upvotes: 3

anminhtu
anminhtu

Reputation: 21

Open your xib file via editing the xml and replace: style="plain" => dataMode="prototypes" style="grouped"

Upvotes: 2

Related Questions