在下面的代码中

- (IBAction)showAbout:(id)sender {
    AboutView *a = [[AboutView alloc] initWithNibName:@"AboutView" bundle:nil];

    [self setAboutView:a];

    [UIView setAnimationDuration:.75];
    [[self aboutView] setModalTransitionStyle:UIModalTransitionStyleCrossDissolve];

    [self presentModalViewController:[self aboutView] animated:YES];
}

这两条线似乎完全没有作用。
    [UIView setAnimationDuration:.75];
    [[self aboutView] setModalTransitionStyle:UIModalTransitionStyleCrossDissolve];

在这个例子中,我用错了吗?

最佳答案

您无法设置标准转换的持续时间。

关于objective-c - iOS,在 View 之间转换,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7940057/

10-12 05:41