UIView not resizing correctly with UINavigationController in iOS 7 -
i encountered strange behaviour of view in ios 6.1 app tried ran ios 7 beta 2 , on iphone. app has uinaviagationcontroller works fine if run in ios 6.1 simulator. however, xcode dp bottom part of view cut off. see picture.
does know how fix this? drawing box see cut off on bottom (self.frame.size.height) of uiview managed navigation controller.
thanks.
try subtracting size of box amount of toolbar @ top. when using self.frame.size.height, use entire height location on view, when subtracting toolbar/navigation bar, raise enough fit entire box onto view
//clearly not objc show how implement boxlocation @ (self.frame.size.height - (amount of toolbar/nav bar))
hope helps!
Comments
Post a Comment