将textView设置为从顶部开始(Swift)

时间:2015-11-19 21:43:32

标签: ios swift textview

我希望让Xcode中的textView从顶部开始,因为它目前在顶部开始。

 //This is the code I'm using currently to try and have it start at the top

 self.productDescription .scrollRangeToVisible(NSMakeRange(0, 0))

然而这不起作用。任何人都有任何想法可能是什么问题?

1 个答案:

答案 0 :(得分:3)

默认情况下,UITextView元素具有contentInsets。您可以尝试更改textView.contentInset的值,如下所示:

textView.contentInset = UIEdgeInsetsMake(-4,-8,0,0);