iOS,优雅的方向变化

iOS, Graceful Orientation Change

我在 viewDidLoaddidRotateFromInterfaceOrientation

调用了这个函数
-(void) makeBox{
    [self.view1 removeFromSuperview];

    float viewWidth = CGRectGetWidth(self.view.frame);
    float viewHeight = CGRectGetHeight(self.view.frame);
    float startx = (viewWidth / 100) * 10;
    float starty = (viewHeight /100) * 20;

    float width = (viewWidth / 100) * 80;
    float height = (viewHeight /100) * 60;

    CGRect frame1 = CGRectMake(startx, starty, width, height);
    self.view1 = [[UIView alloc] initWithFrame:frame1];
    [self.view1 setBackgroundColor:[UIColor redColor]];

    [self.view addSubview:self.view1];  
}

当视图确实发生变化时,它非常 'sketchy' 并且一点也不优雅。我正在使用模拟器,但我认为如果我在设备上 运行 也是一样的。 我将如何使这个过渡更顺畅?我会 post 到用户体验页面,但我希望以编程方式进行

除了学习之外,整体的目的是通过代码实现与方向无关的图形(没有自动布局)。

如果您唯一要更改的是视图,则无需删除视图并创建具有所需框架的新视图。只需就地修改视图框架:

- (void)makeBox {
    CGFloat viewWidth = CGRectGetWidth(self.view.frame);
    CGFloat viewHeight = CGRectGetHeight(self.view.frame);
    CGFloat startx = (viewWidth / 100) * 10;
    CGFloat starty = (viewHeight /100) * 20;

    CGFloat width = (viewWidth / 100) * 80;
    CGFloat height = (viewHeight /100) * 60;

    CGRect view1Frame = CGRectMake(startx, starty, width, height);

    if (!self.view1) {
        // The view doesn't exists yet, we create it
        self.view1 = [[UIView alloc] initWithFrame:view1Frame];
        [self.view1 setBackgroundColor:[UIColor redColor]];
        [self.view addSubview:self.view1];
    }
    else {
        // Just update the frame
        self.view1.frame = view1Frame;
    }
}

为了更好的用户体验,将帧更新包装在动画块中:

// ... snip ...
else {
    [UIView animateWithDuration:0.3 animations:^() {
        self.view1.frame = view1Frame;
    }];
}