0
我想通過其相應的編號訪問UIViewAnimationTransition(請參見圖像編號1)。此外,第二個數字對應於什麼(圖片,編號2),並且與訪問第一個數據相關。類似於下面的這種情況,其中選項被快速定義,然後例如喂入動畫塊。按數字訪問typedef枚舉?
UIViewAnimationOptions option = 3; // UIViewAnimationOptionTransitionCurlUp
UIImage * toImage = [backgroundImages objectAtIndex:backgroundImageCount];
[UIView transitionWithView:backgroundView
duration:transitionDuration
options:option
animations:^{
[backgroundView setImage:toImage];
} completion:nil];