iOS 更改UILabel某些字体样式方法
程序员文章站
2024-02-14 16:40:22
废话不多说了,大家先看下代码吧,具体待明日如下所示:
//str:要改变的字
//result:整个label里的字
//color: 字的颜色
- (...
废话不多说了,大家先看下代码吧,具体待明日如下所示:
//str:要改变的字 //result:整个label里的字 //color: 字的颜色 - (nsmutableattributedstring *)changesometext:(nsstring *)str intext:(nsstring *)result withcolor:(uicolor *)color { nsmutableattributedstring *attributestr = [[nsmutableattributedstring alloc] initwithstring:result]; nsrange colorrange = nsmakerange([[attributestr string] rangeofstring:str].location,[[attributestr string] rangeofstring:str].length); [attributestr addattribute:nsforegroundcolorattributename value:color range:colorrange]; return attributestr; }
效果:
以上所述是小编给大家介绍的ios 更改uilabel某些字体样式方法,希望对大家有所帮助