我有一个通知中心小部件,该小部件具有带有表格视图单元格的表格视图。在单元格中,有一个标签,我想用文字+图片显示。该图像作为NSTextAttachment包含在内。我在应用程序内有以下代码:

NSTextAttachment *attachment = [NSTextAttachment new];
attachment.image = [UIImage imageWithData:item.image];
NSAttributedString *itemImage = [NSAttributedString attributedStringWithAttachment:attachment];
NSAttributedString *itemName = [[NSMutableAttributedString alloc] initWithString:[NSString stringWithFormat:@" %@", item.name]];
NSMutableAttributedString *itemString = [[NSMutableAttributedString alloc] initWithAttributedString:itemImage];
[itemString appendAttributedString:itemName];
cell.nameLabel.attributedText = itemString;

该代码可在应用程序内部运行,但我也尝试在其小部件(以及因此的TodayViewController)中使用。在窗口小部件中显示时,标签上没有图像。如果我在运行这段代码时停下来,我可以看到附件。图像已正确设置。我究竟做错了什么?谢谢!

最佳答案

后来发现,在我设置了cell.nameLabel.attributedText = itemString;之后,我又在设置cell.nameLabel.text = itemString,因此它覆盖了属性字符串

关于ios - NSTextAttachment未显示在“今日通知中心”小组件中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27643796/

10-12 16:11