수색…


통사론

  1. NSTextAttachment * attachmentName = [[NSTextAttachment alloc] init];

비고

NSTextAttachment 객체는 첨부 속성의 값으로 NSAttributedString 클래스 클러스터에서 사용됩니다. 이 클래스로 작성한 객체를 텍스트 첨부 객체라고하며, 혼동이 생기지 않을 경우 텍스트 첨부 또는 단순한 첨부로 간주합니다.

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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow