基本上我想要做的就是获得html类的价值。
有问题的课程是论坛的一部分,当您收到消息,通知等时,它会给出一个数字计数。我希望得到这个数,并将其加载到表视图中。
到目前为止,我已经建立了这样的徽章细胞附件视图:
MLPAccessoryBadge *accessoryBadge = [MLPAccessoryBadge new];
[accessoryBadge setText:@"test"];
[cell setAccessoryView:accessoryBadge];
UIView *number = [[UIView alloc] initWithFrame:cell.frame];
number.backgroundColor = [UIColor colorWithRed:0.176 green:0.176 blue:0.176 alpha:1];
cell.backgroundView = number;
不,我需要弄清楚如何将下面的代码传递给上面的setText部分。
<span class="ipsHasNotifications">%@</span>
这样做的最佳做法是什么?
先谢谢你。