7 在属性字符串中加入图片
我们需要使用一个文本附件:
- - (NSAttributedString *) prettyName
- {
- NSTextAttachment *p_w_upload;
- p_w_upload = [[[NSTextAttachment alloc] init] autorelease];
- NSCell *cell = [p_w_upload p_w_uploadCell];
- NSImage *icon = [self icon]; // or wherever you are getting your p_w_picpath
- [cell setImage: icon];
- NSString *name = [self name];
- NSAttributedString *attrname;
- attrname = [[NSAttributedString alloc] initWithString: name];
- NSMutableAttributedString *prettyName;
- prettyName = (id)[NSMutableAttributedString attributedStringWithAttachment:
- p_w_upload]; // cast to quiet compiler warning
- [prettyName appendAttributedString: attrname];
- return (prettyName);
- }
这样就可以在字符串前面加入图片。如果需要在字符串中加入图片就需要创建通过附件创建一个属性字符串,然后将其加入到最终的属性字符串中。
8 除去字符串中的换行符
假定有一个字符串,你想除去换行符。你可以像脚本语言一样进行一个分割/合并操作,或者制作一个可变的拷贝并进行处理:
- NSMutableString *mstring = [NSMutableString stringWithString:string];
- NSRange wholeShebang = NSMakeRange(0, [mstring length]);
- [mstring replaceOccurrencesOfString: @"
- withString: @""
- options: 0
- range: wholeShebang];
- return [NSString stringWithString: mstring];
(这也可用于通用的字符串操作,不仅经是除去换行符)
该方法比分割/合并至少省一半的时间。当然可能结果不会造成太多的不同。在一个简单的测试中,处理一个1.5兆文件中36909个新行,分割/合并操作花费了0.124秒,而上述方法仅需0.071秒。
9 字串匹配
- NSRange range = [[string name] rangeOfString: otherString options: NSCaseInsensitiveSearch];
10 今天日期的字符串
将一个日期转换成字符串的通用方法就是通过NSDateFormatter。有时你想生成一个格式比较友好的日期字符串。比如你需要"December 4, 2007",这种情况下就可以使用:
- [[NSDate date] descriptionWithCalendarFormat: @"%B %e, %Y" timeZone: nil locale: nil]
(感谢Mike Morton提供该方法)
11 除去字符串末尾的空格
- NSString *ook = @"\n \t\t hello there \t\n \n\n";
- NSString *trimmed =
- [ook stringByTrimmingCharactersInSet:
- [NSCharacterSet whitespaceAndNewlineCharacterSet]];
- NSLog(@"trimmed: '%@'", trimmed);
输出结果是:
2009-12-24 18:24:42.431 trim[6799:903] trimmed: 'hello there'
图形
1 绘制一个粗体字符串
- - (void) drawLabel: (NSString *) label
- atPoint: (NSPoint) point
- bold: (BOOL) bold {
- NSMutableDictionary *attributes = [NSMutableDictionary dictionary];
- NSFont *currentFont = [NSFont userFontOfSize: 14.0];
- if (bold) {
- NSFontManager *fm = [NSFontManager sharedFontManager];
- NSFont *boldFont = [fm convertFont: currentFont
- toHaveTrait: NSBoldFontMask];
- [attributes setObject: boldFont
- forKey: NSFontAttributeName];
- } else {
- [attributes setObject: currentFont
- forKey: NSFontAttributeName];
- }
- [label drawAtPoint: point withAttributes: attributes];;
- }