怎样修改文字的默认大小或者其他属性,有提供接口吗
Closed this issue · 2 comments
2641062110 commented
怎样修改文字的默认大小或者其他属性,有提供接口吗
rztime commented
初始化的时候你可以添加属性:
textView.font = [UIFont systemFontOfSize:17];
textView.rz_attributedDictionays[NSFontAttributeName] = [UIFont systemFontOfSize:17];
未设置font时,设置rz_attributedDictionays,点进去之初,编辑的光标默认是11号字体,所以需要一同设置font,这样光标会和字体一样大
你还可以添加更多的其他属性,我这里默认是黑色17号字体,你可以根据你的需求来设置,如果工具条在已加载的情况下,可以rz_reloadAttributeData刷新一下工具条
2641062110 commented
感谢您的回复,问题已解决
发自我的iPhone
…------------------ 原始邮件 ------------------
发件人: rztime <notifications@github.com>
发送时间: 2020年12月2日 17:45
收件人: rztime/RZRichTextView <RZRichTextView@noreply.github.com>
抄送: 2641062110 <2641062110@qq.com>, Author <author@noreply.github.com>
主题: 回复:[rztime/RZRichTextView] 怎样修改文字的默认大小或者其他属性,有提供接口吗 (#22)
初始化的时候你可以添加属性:
textView.rz_attributedDictionays[NSFontAttributeName] = [UIFont systemFontOfSize:17];
你还可以添加更多的其他属性,我这里默认是黑色17号字体,你可以根据你的需求来设置,如果工具条在已加载的情况下,可以rz_reloadAttributeData刷新一下工具条
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.