addSubview animation

前端 未结 6 887
情书的邮戳
情书的邮戳 2020-11-28 01:58

I have main UIView where I display different data. Then I put a button, which displays subview like this:

- (IBAction) buttonClicked:(id)sender
{
    UIView          


        
6条回答
  •  难免孤独
    2020-11-28 02:38

    [UIView transitionWithView:containerView duration:0.5
            options:UIViewAnimationOptionTransitionCurlUp //change to whatever animation you like
            animations:^ { [containerView addSubview:subview]; }
            completion:nil];
    

提交回复
热议问题