Perguntas com a marcação «nstextattachment»

10
Centralize a imagem NSTextAttachment ao lado do UILabel de linha única
Gostaria de anexar uma NSTextAttachmentimagem à minha string atribuída e centralizá-la verticalmente. Usei o seguinte código para criar minha string: 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]; No entanto, a imagem parece estar alinhada …
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.