Ниже приведен мой код для прокрутки горизонтали UILabel, чтобы он выглядел как эффект выделения. Но анимация начинается с метки в центре и прокручивается до ее ширины и снова ставится из центра. Я хочу, чтобы непрерывная прокрутка, похожая на шатер слева направо. Можете ли вы помочь мне.
-(void)loadLabel{
if (messageView) {
[messageView removeFromSuperview];
}
NSString *theMessage = text;
messageSize = [theMessage sizeWithFont:font];
messageView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, messageSize.width, 916)]; //x,y,width,height
[messageView setClipsToBounds:NO]; // With This you prevent the animation to be drawn outside the bounds.
[self.view addSubview:messageView];
lblTime = [[RRSGlowLabel alloc] initWithFrame:CGRectMake(0, 0, messageSize.width, 916)]; //x,y,width,height
[lblTime setBackgroundColor:[UIColor yellowColor]];
lblTime.font = font;
[lblTime setText:theMessage];
lblTime.glowOffset = CGSizeMake(0.0, 0.0);
lblTime.glowAmount = 90.0;
lblTime.glowColor = color;
[lblTime setClipsToBounds:NO];
[lblTime setTextColor:color];
[lblTime setTextAlignment:UITextAlignmentLeft];
lblTime.frame = messageView.bounds ; //x,y,width,height
[messageView addSubview:lblTime];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:speed];
[UIView setAnimationRepeatCount:HUGE_VALF];
[UIView setAnimationTransition:UIViewAnimationTransitionNone forView:messageView cache:YES];
lblTime.frame = CGRectMake(-messageSize.width, 45, messageSize.width, 916); //x,y,width,height
[UIView commitAnimations];
}