美文网首页
swift中textview限制行数、修改字体、修改行间距一系列

swift中textview限制行数、修改字体、修改行间距一系列

作者: mr_ios_zhang | 来源:发表于2018-02-28 14:43 被阅读0次

    原本感觉看上去textview挺简单,结果真的用起来还是碰到了不少的坑,下面为大家详细介绍一下我碰到的一些坑

    1、限制行数

        func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {

     let newText = (textView.text as NSString).replacingCharacters(in: range, with: text)

     var textWidth = (UIEdgeInsetsInsetRect(textView.frame, textView.textContainerInset)).width

    textWidth -= 2.0 * (textView.textContainer.lineFragmentPadding + 1);

     let boundingRect = sizeOfString(string: newText, constrainedToWidth: Double(textWidth), font: textView.font!)

     let numberOfLines = boundingRect.height / textView.font!.lineHeight;

     print(numberOfLines)

     return ((numberOfLines <= 3) && (newText.length <= 60));

        }

    当然了,这里我也用了一个字数限制,textview边框处会有间隔,所以计算宽度需要考虑在内。

    2、修改字体,修改字体的方法相信网上有很多,但是有时候就是不对,为什么呢,其实不是不对,是字体库的名字不对而已,这里我只给大家说一下如何找字体库真实的名字

     uifont的对象有一个get属性familyNames,这里就是说他系统中的字体的名字,自体库加入前,打印一下,自体库加入后打印一下,多出来的那个名字,就是自体库真实的名字。

    3、修改行间距

    不可编辑的textview网上有很多相关代码,不解释;可编辑的textview我在这里说一下方法:

            let paraph = NSMutableParagraphStyle()

     //将行间距设置为20

    paraph.lineSpacing = 20

     //样式属性集合

            textView.typingAttributes[NSAttributedStringKey.font.rawValue] = UIFont.init(name: "DFHanziPenGB Std", size: 14)

            textView.typingAttributes[NSAttributedStringKey.paragraphStyle.rawValue] = paraph

            textView.typingAttributes[NSAttributedStringKey.foregroundColor.rawValue] = textField.textColor

    可编辑的textview中typingAttributes添加即可,其实还是很简单的。

    好吧,到这里其实我要说的基本上也差不多了,但是还有一些问题:比如说textview换行以后光标问题,还有一个很严峻的适配问题(不适配iOS8可以不用看了),总有一些特殊情况无法避免的发生。

    //textview delegate

     func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool {

     self.isPassed = true

     let newText = (textView.text as NSString).replacingCharacters(in: range, with: text)

     var textWidth = (UIEdgeInsetsInsetRect(textView.frame, textView.textContainerInset)).width

    textWidth -= 2.0 * (textView.textContainer.lineFragmentPadding + 1);

     let boundingRect = sizeOfString(string: newText, constrainedToWidth: Double(textWidth), font: textView.font!)

     let numberOfLines = boundingRect.height / textView.font!.lineHeight;

     print(numberOfLines)

     return ((numberOfLines <= 3) && (newText.length <= 60));

        }

     func textViewDidChange(_ textView : UITextView) {

     if self.isPassed {

     self.isPassed = false

     return

            }

     var textWidth = (UIEdgeInsetsInsetRect(textView.frame, textView.textContainerInset)).width

    textWidth -= 2.0 * (textView.textContainer.lineFragmentPadding + 1);

     let boundingRect = sizeOfString(string: textView.text, constrainedToWidth: Double(textWidth), font: textView.font!)

     let numberOfLines = boundingRect.height / textView.font!.lineHeight;

     if ((numberOfLines <= 3) && (textView.text.length <= 60)) {

     self.textViewText = textView.text

            }

     else{

    textView.text = self.textViewText

            }

     self.isPassed = false

        }

    当你输入文本的时候,这个时候iOS8会出现一些问题,和后面的系统不那么一样,就是输入的时候不走func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool 这个代理方法,但是func textViewDidChange(_ textView : UITextView)这个代理方法是一定会走的,所以,我们用一个self.isPassed属性去记住有没有走过第一个代理方法,如果没有,那么就在第二个代理方法里面判断限制,具体什么情况走什么情况不走,你们自己去试一试吧。

    相关文章

      网友评论

          本文标题:swift中textview限制行数、修改字体、修改行间距一系列

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