MAO-EYE 2009-04-14 07:42 采纳率: 100%
浏览 205
已采纳

如何在 UITextView 中丢失空白 / 填充?

I have a UITextView in my iOS Application, which displays a large amount of text. I am then paging this text by using the offset margin parameter of the UITextView. My problem is that the padding of the UITextView is confusing my calculations as it seems to be different depending on the font size and typeface that I use.

Therefore, I pose the question: Is it possible to remove the padding surrounding the content of the UITextView?

Look forward to hearing your responses!

转载于:https://stackoverflow.com/questions/746670/how-to-lose-margin-padding-in-uitextview

  • 写回答

19条回答 默认 最新

  • 喵-见缝插针 2017-02-19 22:45
    关注

    For 2018

    It is one of the silliest bugs in iOS.

    The class UITextViewFixed is a usually a reasonable solution.

    Here is the class:

    @IBDesignable class UITextViewFixed: UITextView {
        override func layoutSubviews() {
            super.layoutSubviews()
            setup()
        }
        func setup() {
            textContainerInset = UIEdgeInsets.zero
            textContainer.lineFragmentPadding = 0
        }
    }
    

    Don't forget to turn off scrollEnabled in the Inspector!

    1. The solution does work properly in storyboard

    2. The solution does work properly at runtime

    That's it, you're done.

    In general, that should be all you need in most cases.

    Even if you are changing the height of the text view on the fly this usually does all you need.

    (A common example of changing the height on the fly, is changing it as the user types.)

    Here is the broken UITextView from Apple...

    screenshot of IB with UITextView

    Here is UITextViewFixed:

    screenshot of IB with UITextViewFixed

    Note that of course you must

    turn off scrollEnabled in the Inspector!

    Don't forget to turn off scrollEnabled! :)


    Some further issues

    (1) In some unusual cases - example, some cases of flexible cell height table views with dynamically changing height - Apple does the most infuriating thing in the world: they add extra space at the bottom. No, really! This would have to be one of the most infuriating things in iOS.

    Here is a "quick fix" to add which often helps with that madness.

    ...
            textContainerInset = UIEdgeInsets.zero
            textContainer.lineFragmentPadding = 0
    
            // this is not ideal, but you can sometimes use this
            // to fix the "space at bottom" insanity
            var b = bounds
            let h = sizeThatFits(CGSize(
               width: bounds.size.width,
               height: CGFloat.greatestFiniteMagnitude)
           ).height
           b.size.height = h
           bounds = b
     ...
    

    (2) Sometimes, to fix yet another subtle Apple mess-up, you have to add this:

    override func setContentOffset(_ contentOffset: CGPoint, animated: Bool) {
        super.setContentOffset(contentOffset, animated: false)
    }
    

    (3) Arguably, we should be adding :

    contentInset = UIEdgeInsets.zero
    

    just after .lineFragmentPadding = 0 in UITextViewFixed . However ... it just doesn't work in current iOS! It may be necessary to add that in the future.

    The fact that UITextView is totally broken in iOS is one of the weirdest things in all of mobile computing.

    Finally, here's a somewhat similar tip for TextField: https://stackoverflow.com/a/43099816/294884

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(18条)

报告相同问题?

悬赏问题

  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?