ibireme / YYText

Powerful text framework for iOS to display and edit rich text.
MIT License
8.86k stars 1.7k forks source link

NSMutableAttributedString 设置字体会出现跳动 #444

Closed leibaozai closed 8 years ago

leibaozai commented 8 years ago

你好!我想实现一个设置粗体的功能,目前遇到几个问题。

1、NSMutableAttributedString初始化必须@" "不能@"",要不然就会出现你说的这种问题,那有没有什么办法做到设置字体???

241

NSMutableAttributedString 有这样的特性:当在某处插入纯文本时,这段纯文本会被附加上它附近一个字符(一般是左侧的字符)的属性, 2、如果设置空格,当我切换多几次会发现view会出现跳动,不知道是不是计算的问题。跳动截图如下

1 2

ibireme commented 8 years ago

用 typingAttributes 这个属性来设置字体试试看。

leibaozai commented 8 years ago

谢谢!已解决。