We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I set text which is very large, like more than 300 characters, text doesn't appear on label.
This is how I configured newsLabel AutoScrollLabel. Frame is set from XIB:
- (void) updateNews:(NSString *) news { self.newsLabel.textColor = [UIColor blackColor]; self.newsLabel.font = [UIFont systemFontOfSize:14]; self.newsLabel.labelSpacing = 0.0; // distance between start and end labels self.newsLabel.pauseInterval = 0.0; // seconds of pause before scrolling starts again self.newsLabel.scrollSpeed = 30; // pixels per second self.newsLabel.textAlignment = NSTextAlignmentLeft; // centers text when no auto-scrolling is applied self.newsLabel.fadeLength = 12.f; self.newsLabel.scrollDirection = CBAutoScrollDirectionLeft; self.newsLabel.text = news; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I set text which is very large, like more than 300 characters, text doesn't appear on label.
This is how I configured newsLabel AutoScrollLabel. Frame is set from XIB:
The text was updated successfully, but these errors were encountered: