我已将设备iOS更新为iOS 8,但多行标签无法正常工作。它显示了非常奇怪的屏幕快照。

因此,请您为我提供解决方案。

我已经将行数设置为= 0,并且在ios 7中运行完美。
不使用自动版式和故事板。

最佳答案

该代码对您有帮助,对我来说很好用,请根据需要编辑代码

 UILabel *problem = [[UILabel alloc] initWithFrame:CGRectMake(40, 100, 200, 100)];
    problem.lineBreakMode=NSLineBreakByWordWrapping;
    problem.text=@"Please use this code it may help you it works fine for me";
    problem.numberOfLines=0;
  [self.view addSubview:problem];

关于ios - iOS8中的多行标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25968082/

10-12 05:50