-
NSString UILabel 밑줄 긋기iOS/Objective C 2016. 2. 4. 16:00
- (void) setUnderLine:(UILabel*)label
{
//글자 세팅
NSString* str = @"Hello World";
NSMutableAttributedString* attStr = [[NSMutableAttributedString alloc] initWithString:str];
NSRange range1 = [str rangeOfString:@"Hello"];
//밑줄 긋기
[attStr addAttributes:@{NSUnderlineStyleAttributeName:@(NSUnderlineStyleSingle), NSUnderlineColorAttributeName:[UIColor greenColor]} range:range1];
[label setAttributedText:attStr];
}
굵은 = NSUnderlineStyleThick
'iOS > Objective C' 카테고리의 다른 글
NSString x글자 이후 ...처리 truncate tail (0) 2016.12.26 NSString UILabel 자간 (0) 2016.02.04 NSString UILabel 두줄 취소선 (0) 2016.02.04 NSString UILabel 한줄 취소선 (0) 2016.02.04 NSString UILabel 일부 문자열 그림자 설정 (0) 2015.12.23