我有一个按钮,当按下它时,会添加一个带有其他按钮的新子视图。我已经这样做了。
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget: @selector(newView)];
- (void)newView
{
UIView *newView = [[UIView alloc]initWithFrame:CGRectmake(0,0,100,100)];
[self.view addSubview:newView];
}
现在,当按下按钮时,刚刚添加了新视图。我想像在 IB 中那样使用 push segue modal 样式对新视图进行动画处理。我怎样才能以编程方式做到这一点?