Created
September 16, 2011 02:44
-
-
Save whalec/1221061 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (void)viewWillAppear:(BOOL)animated{ | |
[super viewWillAppear:animated]; | |
__block UIView *searchLabel = [self.filterScrollingView viewWithTag:kSearchLabel]; | |
[UIView animateWithDuration:15. delay:0. options:(UIViewAnimationOptionRepeat | UIViewAnimationOptionCurveLinear) animations:^{ | |
searchLabel.center = CGPointMake(-searchLabel.bounds.size.width / 2, searchLabel.center.y); | |
} completion:nil]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment