Did XCode 6.3 / Swift 1.2 add additional margins to a UITableViewCell's contentView? Prior to updating, I had a custom UIView that extended all the way across the screen in my cells. Example:
Now, everything in the cell seems to have additional margins that I have no idea where they came from.
Note that these view's widths are not altered in any way in code and the right and left are constrained as below:
Also note that I am using tableView.separatorStyle = .None
. I add this fact because for some reason in one of my tableView
s that has the default separator, it doesn't appear to add these additional margins.
Does anyone know if they did some weird change in XCode 6.3? This behavior occurred directly after updating.
Edit: