斗士狗 2009-04-14 07:42 采纳率: 0%
浏览 281
已采纳

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

  • 关注

    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 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)
  • ¥15 电力市场出清matlab yalmip kkt 双层优化问题
  • ¥30 ros小车路径规划实现不了,如何解决?(操作系统-ubuntu)