Objective-C Language
NSTextAttachment
Recherche…
Syntaxe
- NSTextAttachment * attachmentName = [[NSTextAttachment alloc] init];
Remarques
NSTextAttachment
objets NSTextAttachment
sont utilisés par le NSAttributedString
classes NSAttributedString
tant que valeurs des attributs de pièce jointe. Les objets que vous créez avec cette classe sont appelés objets de pièce jointe de texte, ou lorsqu'aucune confusion ne peut en résulter, en tant que pièces jointes de texte ou simplement pièces jointes.
Exemple NSTextAttachment
NSTextAttachment *attachment = [[NSTextAttachment alloc] init];
attachment.image = [UIImage imageNamed:@"imageName"];
attachment.bounds = CGRectMake(0, 0, 35, 35);
NSAttributedString *attachmentString = [NSAttributedString attributedStringWithAttachment:attachment];
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow