Is there a way to accomplish something like the html Marquee effect for a uitableviewcells textlabel.text?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll have to implement it yourself using a NSTimer. You would cycle trough the characters of your
textLabel.textby taking one from the front and appending it to the back. In order to do this easily you could use aNSMutableStringthat you would manipulate usingsubstringWithRange:deleteCharactersInRange:andappendString, and then set astextLabel.textafter each character manipulation: