我希望让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))
然而这不起作用。任何人都有任何想法可能是什么问题?
答案 0 :(得分:3)
默认情况下,UITextView元素具有contentInsets。您可以尝试更改textView.contentInset的值,如下所示:
textView.contentInset = UIEdgeInsetsMake(-4,-8,0,0);