Xcode-beta (7A165t): IB Includes UITableView Separators Even When Turned Off
| Originator: | rwgrier | ||
| Number: | rdar://21940268 | Date Originated: | 22-Jul-2015 09:37 AM |
| Status: | Duplicate/21827485 | Resolved: | 27-Jul-2015 06:13 PM |
| Product: | Developer Tools | Product Version: | Xcode-beta (7A165t) |
| Classification: | Other Bug | Reproducible: | Always |
Summary: I have a project where I have the table separators turned off for a specific UITableViewController. In previous Xcode betas, this worked as expected. In Xcode 7 beta 4, this is broken. I’ve included a sample project that demonstrates this issue. Both my project and this sample project aren’t doing anything overly fancy with table views. Both subclass UITableViewController. My project uses subclassed UITableViewCells, the sample project uses the standard (Default style) UITableViewCells. Steps to Reproduce: - Open the sample project - Open the Main Storyboard - Click on the UITableViewController - Inspect the separator style. Note that it’s set to “None” - Build and run the project Expected Results: The table view should be displayed without any separators Actual Results: The table view is displayed with separators Regression: This worked correctly in previous releases of Xcode, including Xcode 7 beta 3.
Comments
Please note: Reports posted here will not necessarily be seen by Apple. All problems should be submitted at bugreport.apple.com before they are posted here. Please only post information for Radars that you have filed yourself, and please do not include Apple confidential information in your posts. Thank you!
Workaround in code
You can workaround in code:
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
sadface