我有一个涉及UILabel
'ssizeToFit
方法的问题:
UILabel *questionLabel = [[UILabel alloc]initWithFrame:CGRectMake(0,0,320,320)];
questionLabel.lineBreakMode = UILineBreakModeWordWrap;
questionLabel.backgroundColor=[UIColor clearColor];
questionLabel.textAlignment=UITextAlignmentLeft;
questionLabel.textColor=[UIColor blackColor];
questionLabel.tag=1;
questionLabel.font=[UIFont systemFontOfSize:13];
questionLabel.numberOfLines = 0;
[questionLabel sizeToFit];
[myView addSubview:questionLabel];
我编写了这段代码来显示我的数据。但是如果我写:[questionLabel sizeToFit]
我的数据显示不正确。如果我删除[questionLabel sizeToFit]
它,它会显示,但它只显示一半的数据。
谢谢并恭祝安康。