在UITextView底部加载文本

时间:2014-03-21 18:12:00

标签: ios7 xcode5 uitextview

我试图在UITextView中显示一些文本,但它似乎将它加载到textview的中间,而我希望它通过顶部对齐。我尝试遵循建议here,但使用sizeToFit和我的NavContoller automaticallyAdjustsScrollViewInsets属性已设置为NO

这是一个屏幕截图(看看底部有一些文字):

enter image description here

我的代码在这里:

- (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];

}

非常感谢任何帮助!

谢谢, 添

1 个答案:

答案 0 :(得分:0)

未选中"调整滚动视图插图"在故事板的属性部分,问题已修复。