Yes, just use the | to perform a bitwise OR of them, combining them - for example:
[UIView transitionWithView:containerView duration:0.2 options:(UIViewAnimationOptionTransitionCurlUp | UIViewAnimationOptionAllowUserInteraction) animations:^{ [fromView removeFromSuperview]; [containerView addSubview:toView]; } completion:NULL];
source share