Objective-C Language
NSTextEnganche
Buscar..
Sintaxis
- NSTextAttachment * attachmentName = [[NSTextAttachment alloc] init];
Observaciones
NSTextAttachment
objetos NSTextAttachment
son utilizados por el NSAttributedString
clase NSAttributedString
como valores para los atributos de adjunto. Los objetos que creas con esta clase se conocen como objetos de adjuntos de texto, o cuando no hay confusión, como adjuntos de texto o simplemente adjuntos.
Ejemplo 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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow