Question

This seems that it might be a brand new issue with iOS 7.1, but I'm noticing that my cells that contain date and ui pickers have a height of 1.0f but the date pickers are being shown anyways. The picture is kind of confusing but basically after each cell, I have another cell with a height of 1.0f which changes to 200.f upon selection 'My week starts on...

This worked just fine on iOS 7.0

enter image description here

enter image description here

Was it helpful?

Solution

I believe you might solve your problem by calling [cell setClipsToBounds:YES] on each of your cells. This will cause the cell to stop showing anything outside its own bounds. Certainly worth a shot.

https://developer.apple.com/library/ios/documentation/uikit/reference/uiview_class/uiview/uiview.html#//apple_ref/occ/instp/UIView/clipsToBounds

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top