Xcode 5.1 iOS 7.1 cell issues in UITableView

I think I found a serious error in the new version of Xcode 5.1 after the update, when my cells begin to disappear when I scroll down.

enter image description here

When I click on them a couple of them enter image description here

When I scroll up after that, everything is fine, and this problem only occurs on iOS 7.1. In iOS 7.0.3, everything works fine.

enter image description here

I found a little hack to make it work on iOS 7.1. To do this, I download the old version of Xcode (5.0.2) and build the application that I installed on my device with iOS 7.1, in this case everything works fine too. Therefore, I believe that some errors in Xcode 5.1

+6
source share
2 answers

Im having the same problem with app i ended up, and all things started to go crazy from the look of the table (all 3) right after the update.

found a solution to iOS 7.1 beta5 tableviewcell table height showing objects out of range

add the following to your cell:

cell.clipsToBounds =YES; 
+23
source

I also had the same problem when I opened my project in Xcode 5.1, but I solved it in Interface Builder (Storyboard).

  • Click on the table view cell (not the content view or table view).
  • In the Inspector, check Movable Clips.
  • Do the same for all other View Table of Table View items.

Clip subviews

+1
source

All Articles