我在这篇文章中找到了 NSAttributedString 的示例。我的问题是 - 有任何提示,如何使用它UIRefreshControl class
?
从上面的帖子:
NSMutableAttributedString * string = [[NSMutableAttributedString alloc] initWithString:@"firstsecondthird"];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0,5)];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(5,6)];
[string addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(11,5)];
属性是UIRefreshControl
自动调用的吗?
编辑:
我知道如何设置它,我想知道它是否有任何其他用途,然后“只是”格式化标签 - UIRefresherControl 是否能够显示两个字符串?拉之前一张,拉之后一张?当我看到我不能放入“普通”字符串时,这就是我最初的想法。