Domande taggate «nstextattachment»

10
Centra l'immagine NSTextAttachment accanto a UILabel a riga singola
Vorrei aggiungere NSTextAttachmentun'immagine alla mia stringa attribuita e centrarla verticalmente. Ho usato il seguente codice per creare la mia stringa: 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]; Tuttavia, l'immagine sembra allinearsi alla parte superiore …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.