Skip to content

Instantly share code, notes, and snippets.

@whalec
Created September 16, 2011 02:44
Show Gist options
  • Save whalec/1221061 to your computer and use it in GitHub Desktop.
Save whalec/1221061 to your computer and use it in GitHub Desktop.
- (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