我试图在UITextView中显示一些文本,但它似乎将它加载到textview的中间,而我希望它通过顶部对齐。我尝试遵循建议here,但使用sizeToFit
和我的NavContoller automaticallyAdjustsScrollViewInsets
属性已设置为NO
。
这是一个屏幕截图(看看底部有一些文字):
我的代码在这里:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
// If descLong is not present, use descShort
if (!self.product.descLong) {
self.descLong.text = self.product.descLong;
} else {
self.descLong.text = self.product.descShort;
}
[self.descLong sizeToFit];
}
非常感谢任何帮助!
谢谢, 添
答案 0 :(得分:0)
未选中"调整滚动视图插图"在故事板的属性部分,问题已修复。