~Onlooker 2009-04-14 07:42 采纳率: 0%
浏览 323
已采纳

如何在 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条回答 默认 最新

  • MAO-EYE 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条)

报告相同问题?

悬赏问题

  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能