我不知道为什么我的 NewViewController 正在获取我的 ViewController 的动画。我的 NewViewController.xib 中的所有内容都表现得很奇怪。例如,我的 UITableView 很容易在动画和其他对象中弹出。我检查了我的 NewViewController,它没有连接到我的 ViewController。如果您对如何阻止这种情况有任何建议,我将不胜感激。
视图控制器.m
- (void)viewDidLoad
{
[super viewDidLoad];
[self start];
}
-(void)start{
CGContextRef *imageContext = UIGraphicsGetCurrentContext();
[UIView beginAnimations:nil context:imageContext];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
[UIView setAnimationDelegate:self];
image.alpha = 1;
image1.alpha = 1;
[self performSelector:@selector(change) withObject:nil afterDelay:3];
}
-(void)change{
NewViewController *newViewController = [[NewViewController alloc]init];
[self.navigationController pushViewController:newViewController animated:NO];
}