Just tested my app on iOS 13 and noticed that the rounded corners of custom UITableViewCell disappears when swiping the table cell left or right. This has been working perfectly in iOS12. Anyone else noticed the same?
The cell corners radius are are set in cellForRowAt after the cell has been dequeued.
cell.layer.masksToBounds = true
cell.layer.cornerRadius = 8
Must be an iOS 13 bug. Anyone figured out a workaround until the bug has been fixed?
The cell corners radius are are set in cellForRowAt after the cell has been dequeued.
cell.layer.masksToBounds = true
cell.layer.cornerRadius = 8
Must be an iOS 13 bug. Anyone figured out a workaround until the bug has been fixed?