Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //invert the matrix to keep the activity icons pointing up
  2. __weak OnboardingViewController* weakSelf = self;
  3. self.dynamicItemBehavior.action = ^{
  4. for(OWScaledImageView* view in weakSelf.activityViews){
  5. view.imageView.transform = CGAffineTransformInvert(weakSelf.activityViewContainerView.transform);
  6. }
  7. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement