增加 countLabel 宽度。并通过设置 countLabel 的背景颜色来检查显示的标签数量。
NSUInteger count = [self getCount];
[countLabel setText:[NSString stringWithFormat:@"%d", count]];
[countLabel setBackgroundColor:[UIColor greenColor]];
如果在打印 1 后显示标签区域,则可能存在其他问题。但如果在 1 后未显示标签区域,则存在计数标签宽度的问题(增加计数标签宽度)。
如果尚未解决,请使用以下代码:-----
- (void)viewDidLoad
{
[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(updateLbl) userInfo:nil repeats:YES];
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
-(void)updateLbl
{
count++;
[lbl setText:[NSString stringWithFormat:@"%i",count]];
CGSize lblSize = [lbl.text sizeWithFont:lbl.font];
[lbl setFrame:CGRectMake(lbl.frame.origin.x,lbl.frame.origin.y,lblSize.width,lblSize.height)];
}