我有一个设计,其中UITableViewCell
s 包含一个UIImageView
. UIDeviceOrientationDidChangeNotification
该图像在纵向或横向中应该具有相同的比例,这就是为什么我有一个在界面方向更改时使用通知调用的方法。
-(void)updateRowHeightForOrientation:(UIInterfaceOrientation)orientation {
if(!IS_KNOWN_ORIENTATION(orientation))
return;
CGFloat rowHeightPortrait = (IPAD ? 320. : 160.);
CGFloat widthPortrait = (IPAD ? 768. : 320.);
CGFloat orientationWidth = (IS_PORTRAIT(orientation) ?
(IPAD ? 768. : 320.) :
(IPAD ? 1024. : 480.));
CGFloat resultingRowHeight = rowHeightPortrait * orientationWidth / widthPortrait;
[self.tableView setRowHeight:resultingRowHeight];
// [self.tableView reloadData]; /* works if uncommented */
}
如果未注释该行,则重绘视图并正确设置行高。如果没有,即使使用[self.tableView setNeedsDisplay]
或[self.tableView setNeedsLayout]
不使用属性的新值。
如何强制重新加载 UI 以便应用新值?
它使用了一段时间,-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
因为该rowHeight
属性是在界面旋转并重绘之前设置的,但由于一些奇怪的原因,这个方法不再被调用......
谢谢你的帮助 !