UITextView光标在中间的问题

之前遇到的,UITextView的光标莫名其妙的在中间,上面空出一块区域来,解决办法是

if self.responds(to: #selector(getter: automaticallyAdjustsScrollViewInsets)) {

            self.automaticallyAdjustsScrollViewInsets = false

        }

你可能感兴趣的:(UI)