iOS 는 NSAttributedString 을 이용 하여 그림 과 글 의 혼합 효 과 를 예시 합 니 다.
NSAttributedString 은 문자 레이아웃 과 그림 혼합 기능 을 매우 편리 하 게 실현 할 수 있 으 며,UILabel 과 UITextView 는 NSAttributedString 속성 문자열 을 추가 할 수 있다 는 점 을 통 해 속성 이 있 는 문자 와 문자 에 그림 이 포 함 된 텍스트 내용 을 보 여줄 수 있다.긴 말 하지 않 겠 습 니 다.다음은 상세 한 소 개 를 살 펴 보 겠 습 니 다.
효 과 는 다음 과 같 습 니 다:
예제 코드 는 다음 과 같다.
1-가 변 속성 문자열 초기 화
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:textString];
2-전역 글꼴 속성 설정(글꼴 크기 14 설정)
[attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:14] range:NSMakeRange(0, textString.length)];
[attributedString addAttribute:NSKernAttributeName value:@1 range:NSMakeRange(0, textString.length)];
위의 두 문장 코드 는 한 문장 으로 간략하게 쓸 수 있다.(속성 문자열 에 여러 속성 을 동시에 추가)
[attributedString addAttributes:@{NSFontAttributeName: [UIFont systemFontOfSize:14],NSKernAttributeName: @1} range:NSMakeRange(0, textString.length)];
3-제목 텍스트 속성 수정문자열 로 범위 가 져 오기
[attributedString addAttributes:@{NSFontAttributeName: [UIFont systemFontOfSize:26],NSForegroundColorAttributeName: [UIColor blueColor]} range:[textString rangeOfString:@"360 "]];
4-큰 텍스트 범위 가 져 오기 및 속성 수정앞 뒤 문자열 을 통 해 큰 문자 의 범 위 를 가 져 옵 니 다.
// string
NSRange startRange = [textString localizedStandardRangeOfString:@" :"];
NSRange endRange = [textString localizedStandardRangeOfString:@" 。"];
[attributedString addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSUnionRange(startRange, endRange)];
5-텍스트 에 밑줄 추가
//
NSRange startRange1 = [textString localizedStandardRangeOfString:@" ,"];
NSRange endRange1 = [textString localizedStandardRangeOfString:@" 。"];
[attributedString addAttribute:NSUnderlineStyleAttributeName value:@1 range:NSUnionRange(startRange1, endRange1)];
6-텍스트 에 테두리 추가
//
[attributedString addAttribute:NSStrokeWidthAttributeName value:@2.0 range:[textString rangeOfString:@" 、 、 "]];
[attributedString addAttribute:NSStrokeColorAttributeName value:[UIColor brownColor] range:[textString rangeOfString:@" 、 、 "]];
[attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:17] range:[textString rangeOfString:@" 、 、 "]];
7-텍스트 에 그림 첨부 파일 추가
//
NSTextAttachment *imageAtta = [[NSTextAttachment alloc] init];
imageAtta.bounds = CGRectMake(0, 0, 375, 180);
imageAtta.image = [UIImage imageNamed:@"360"];
NSAttributedString *attach = [NSAttributedString attributedStringWithAttachment:imageAtta];
[attributedString insertAttributedString:attach atIndex:0];
8-텍스트 에 단락 속성 설정
//
NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc]init];
//
[style setLineSpacing:3];
//
[style setParagraphSpacing:6];
//
[style setFirstLineHeadIndent:25];
[attributedString addAttribute:NSParagraphStyleAttributeName value:style range:NSMakeRange(1, textString.length)];
9-인터넷 주소 링크 추가
//
NSRange urlRange = [textString rangeOfString:@"yunpan.360.cn"];
[attributedString addAttribute:NSLinkAttributeName value:[NSURL URLWithString:@"http://yunpan.360.cn"] range:NSMakeRange(urlRange.location, 14)];
[attributedString addAttribute:NSBackgroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(urlRange.location, 14)];
10-UITextView Delegate 에이전트 방법 을 통 해 URL 과 첨부 파일 을 감청 하 는 클릭
#pragma mark ----------UITextViewDelegate----------
- (BOOL)textView:(UITextView *)textView shouldInteractWithURL:(NSURL *)URL inRange:(NSRange)characterRange interaction:(UITextItemInteraction)interaction {
NSLog(@"%@",URL);
return YES;
}
- (BOOL)textView:(UITextView *)textView shouldInteractWithTextAttachment:(NSTextAttachment *)textAttachment inRange:(NSRange)characterRange interaction:(UITextItemInteraction)interaction {
NSLog(@"%@",textAttachment.image);
return YES;
}
추가:상용 속성 문자열 속성
//
NSFontAttributeName // UIFont, default Helvetica(Neue) 12
//
NSParagraphStyleAttributeName // NSParagraphStyle, default defaultParagraphStyle
//
NSForegroundColorAttributeName // UIColor, default blackColor
//
NSBackgroundColorAttributeName // UIColor, default nil: no background
//
NSStrokeColorAttributeName // UIColor, default nil: same as foreground color
//
NSStrokeWidthAttributeName // NSNumber containing floating point value, default 0
//
NSShadowAttributeName // NSShadow, default nil: no shadow
//
NSAttachmentAttributeName // NSTextAttachment, default nil
// URL
NSLinkAttributeName // NSURL (preferred) or NSString
//
NSBaselineOffsetAttributeName // NSNumber containing floating point value,default 0
//
NSUnderlineColorAttributeName // UIColor, default nil: same as foreground color
총결산이상 은 이 글 의 전체 내용 입 니 다.본 논문 의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가치 가 있 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 댓 글 을 남 겨 주 셔 서 저희 에 대한 지지 에 감 사 드 립 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Swift의 패스트 패스Objective-C를 대체하기 위해 만들어졌지만 Xcode는 Objective-C 런타임 라이브러리를 사용하기 때문에 Swift와 함께 C, C++ 및 Objective-C를 컴파일할 수 있습니다. Xcode는 S...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.