美文网首页
UITextView去除内边距

UITextView去除内边距

作者: 命运魔方飞 | 来源:发表于2020-12-28 10:34 被阅读0次

去除 textView 左右边距:

self.textView.textContainer.lineFragmentPadding = 0;

去除 textView 上下边距:

self.textView.textContainerInset = UIEdgeInsetsZero;

相关文章

网友评论

      本文标题:UITextView去除内边距

      本文链接:https://www.haomeiwen.com/subject/vgeznktx.html