2013-07-24 111 views
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]; 

enter image description here

回答

1

那些是位移值。例如1<<20等於1048576。如果你需要他們

enter image description here

這就是說,你不應該由他們的數字引用它們就可以計算出他們在聚光燈下。