objective c - How to put UICollectionView and button in UIPageControl in ios? -
this collectionview when swipe scrolls,
i have putted uicollectionview , button in uipagecontrol, when swipe uicollectionview scrolling, , button view not scrolling smoothly works normal uipagecontrol 
i'm not sure think has catransitions
try changing last piece of method use uiview animations instead of catransitions:
if(pagecontrol.currentpage==pagecontrol.numberofpages-1) { [uiview animatewithduration:0.2 animations:^{ dayradialcollection.alpha = 0.0f; addweek.alpha = 1.0f; removeweek.alpha = 1.0f; } completion:^(bool finished) { }]; } else { [uiview animatewithduration:0.2 animations:^{ dayradialcollection.alpha = 1.0f; addweek.alpha = 0.0f; removeweek.alpha = 0.0f; } completion:^(bool finished) { }]; } there no need hide elements, alpha 0.0f not show them anyway.
Comments
Post a Comment