2013-01-10 3 views

답변

0

뭔가 :

CGPoint center = scrollLabel.center; 
[UILabel beginAnimations:@"scroll" context:nil]; 
[UILabel setAnimationDuration:5.0]; // the time the animation should take 
center.x -= 500; // whatever distance you'd like 
[UILabel commitAnimations]; 
+0

안녕하세요 고마워요. 와트를 이해할 수 없습니다. @ "스크롤"은 스크롤 할 수있는 텍스트입니다. ?? – iCode

+0

@ "scroll"은 애니메이션에 지정하려는 이름입니다. 당신은 그것을 "퇴색"시키거나 "코와 분가"라고 부를 수 있었지만, 어느 것도 그다지 의미가 없었습니다. ;) –

관련 문제