我有一个UILabel
带有属性的字符串,我在 a 中创建UIScrollView
:
CGRect frame = self.view.frame;
frame.origin.x = 10;
frame.size.width -= 10;
frame = CGRectIntegral(frame);
UILabel *textView = [[UILabel alloc] initWithFrame:frame];
textView.numberOfLines = 0;
textView.lineBreakMode = NSLineBreakByWordWrapping;
textView.backgroundColor =[UIColor clearColor];
[self addSubview:textView];
尽管确保使用 设置了框架CGRectIntegral
,iOS 模拟器仍将标签显示为未对齐。
为了试图摆脱错位,我也试过这个没有任何运气:
textView.frame = CGRectIntegral(textView.frame);
textView.bounds = CGRectIntegral(textView.bounds);
带有属性的字符串可以UILabel
在scrollView中正确对齐吗?