有谁知道如何在 UILabel 文本中显示版权图标?这是在 c 周围有一个圆圈的图标。它的 html 代码是:©
或©
.
我尝试了以下代码:
UILabel *contactInfo = [[UILabel alloc] initWithFrame:CGRectMake(-55,135,420,100)];
contactInfo.text = @"'©):'2009 Nationwide ";
或者
contactInfo.text = @"'©'2009 Nationwide ";
或者
contactInfo.text = @"©2009 Nationwide ";
它只是将所有内容打印为文本,没有图标。
这将在 webView 中工作,但我需要它作为 UILabel 文本。有什么帮助吗?