lovels / LBScrollLabel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LBScrollLabel

效果

使用

LBScrollLabel *tempLB = [[LBScrollLabel alloc] initWithFrame:CGRectMake(20, 100, CGRectGetWidth(self.view.frame) - 40, 30)];
tempLB.backgroundColor = [UIColor colorWithRed:(arc4random()%255)/255.0 green:(arc4random()%255)/255.0 blue:(arc4random()%255)/255.0 alpha:1];
tempLB.text = @"Scroll label, from bottom to top!";
[tempLB beginScrollWithDirection:LBScrollLabelDirection_Top];
[self.view addSubview:tempLB];

About


Languages

Language:Objective-C 100.0%