Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
6 NSDictionary *keyword = [[NSDictionary 7 dictionaryWithObject: @"keyword" 8 forKey: @"type"] retain]; 9 NSMutableAttributedString *program = 10 [NSMutableAttributedString new]; 11 12 NSAttributedString *fragment = 13 [[NSAttributedString alloc] 14 initWithString: @"int" 15 attributes: keyword]; 16 [program appendAttributedString: fragment]; |
A string is just a list of characters. Before you display a string, you generally need some other attributes. These attributes describe the typeface, the size, the alignment and underline styles, and so on.