Preguntas etiquetadas con nstextattachment

10
Centro NSTextAttachment imagen junto a una sola línea UILabel
Me gustaría agregar una NSTextAttachmentimagen a mi cadena atribuida y centrarla verticalmente. He usado el siguiente código para crear mi cadena: 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]; Sin embargo, la imagen parece alinearse …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.