Questions marquées «nstextattachment»

10
Centrer l'image NSTextAttachment à côté de UILabel d'une seule ligne
Je voudrais ajouter une NSTextAttachmentimage à ma chaîne attribuée et la centrer verticalement. J'ai utilisé le code suivant pour créer ma chaîne: 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]; Cependant, l'image semble s'aligner sur …
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.