美文网首页
文本框缩进

文本框缩进

作者: 赤焰军少帅林殊 | 来源:发表于2017-12-08 16:45 被阅读27次
 -(void)textViewDidChange:(UITextView *)textView{
    
    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
    paragraphStyle.lineSpacing = 5;  //行间距
    paragraphStyle.firstLineHeadIndent = 5*kRating;  /**首行缩进宽度*/
    paragraphStyle.alignment = NSTextAlignmentLeft;
    NSDictionary *attributes = @{
                                 NSFontAttributeName:[UIFont systemFontOfSize:14*kRating],
                                 NSParagraphStyleAttributeName:paragraphStyle
                                 };
    textView.attributedText = [[NSAttributedString alloc] initWithString:textView.text attributes:attributes];
}
//注意方法名

相关文章

  • 文本框缩进

  • 《PyQT5软件开发 - 控件篇》第3章 单行文本框QLineE

    文本框是GUI界面中使用频率较高的控件,文本框又分为单行文本框和多行文本框,本文先讲单行文本框,单行文本框用途很广...

  • python 学习笔记

    批量缩进 ctrl + [ :向前缩进ctrl + ] :向后缩进

  • 【Python】缩进

    缩进 Python严格执行缩进 缩进方式:自动缩进/手动变更缩进 代码切换:Alt+p/n 参数配置:(1)字体:...

  • Flutter 3.8 表单

    1.TextField单行文本框 多行文本框 <1>样式decoration 对文本框装饰(hintText ...

  • python参考手册——第二章

    行结构与缩进 代码要保持相同的缩进,如果缩进格式不同会报IndentationError,也就是缩进错误 所以如果...

  • 常用快捷键

    vim 常用命令 光标控制命令 缩进\反缩进 单行缩进:> ; 单行反缩进:< Ubuntu 16.04 常用快捷键

  • UITextField

    监听文本框文字改变 获取文本框的clearButton

  • JavaScript基本编码规范

    ## 缩进 ## 建议使用**四个空格**缩进,这也是JSLint中默认的缩进。 什么应该缩进呢?规则很简单——花...

  • Xcode 快捷键

    代码缩进左缩进 command+[ 右缩进 command+] Command + F: 搜索� 隐藏xcode ...

网友评论

      本文标题:文本框缩进

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