0

我有一个设计,其中UITableViewCells 包含一个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属性是在界面旋转并重绘之前设置的,但由于一些奇怪的原因,这个方法不再被调用......

谢谢你的帮助 !

4

1 回答 1

1

我觉得

[self.tableView beginUpdates];
[self.tableView endUpdates];

导致表格视图重新评估所有行高,所以你可以试试这个。

于 2012-10-15T19:11:09.490 回答