整个文本字体是Roboto-light.但是,我必须从前两位医生的API响应中替换文本’Andrew Murphy博士,John Smith’,并从API获得“23位医生”的计数,以便相应地调整此标签.您可以看到的文本颜色取决于文本是常量还是动态.我不知道如何实现它.因此,一些代码片段真的很受欢迎.
谢谢!
解决方法 您可以将NSMutableAttributeString与addAttribute:value:range一起使用;//Your entry stringNsstring *myString = @"I have to replace text 'Dr Andrew Murphy,John Smith' ";//Create mutable string from original oneNSMutableAttributedString *attString = [[NSMutableAttributedString alloc] initWithString:myString];//Fing range of the string you want to change colour//If you need to change colour in more that one place just repeat itNSRange range = [myString rangeOfString:@"John Smith"];[attString addAttribute:NSForegroundcolorAttributename value:[UIcolor yellowcolor] range:range];//Add it to the label - notice its not text property but it's attributeTextlabel.attributedText = attString;
希望这有帮助
总结以上是内存溢出为你收集整理的ios – 如何以编程方式在动态文本中提供相同标签中的不同字体颜色全部内容,希望文章能够帮你解决ios – 如何以编程方式在动态文本中提供相同标签中的不同字体颜色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)