Slide 8
Slide 8 text
UILabel *label = [[UILabel alloc] init];
~~ some codes for label ~~
NSMutableAttributedString *attString = [[NSMutableAttributedString alloc]
initWithString:@"Listen to the web"];
NSInteger stringLength = [attString length];
[attString addAttribute:NSKernAttributeName value:@5
range:NSMakeRange(0, stringLength)];
label.attributedText = attString;
132݄24༵