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)]; …