Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing UITableView style as "Grouped" Causes Crash

Tags:

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

like image 792
Mehmet AKYOL Avatar asked Sep 27 '17 07:09

Mehmet AKYOL


2 Answers

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.

like image 52
Jayprakash Dubey Avatar answered Sep 21 '22 19:09

Jayprakash Dubey


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

like image 31
anminhtu Avatar answered Sep 20 '22 19:09

anminhtu