В следующем коде
- (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];
В этом примере я их неправильно использую?