Questions tagged «nstextattachment»

10
将NSTextAttachment图像居中于单行UILabel的旁边
我想将NSTextAttachment图像附加到属性字符串中,并使其垂直居中。 我使用以下代码创建我的字符串: NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:DDLocalizedString(@"title.upcomingHotspots") attributes:attrs]; NSTextAttachment *attachment = [[NSTextAttachment alloc] init]; attachment.image = [[UIImage imageNamed:@"help.png"] imageScaledToFitSize:CGSizeMake(14.f, 14.f)]; cell.textLabel.attributedText = [str copy]; 但是,图像似乎与单元格的顶部对齐textLabel。 如何更改绘制附件的矩形?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.