标签:io ar os sp on bs line new as
去除首尾空格:
NSString *content = [textView.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
去除首尾空格和换行:
NSString *content = [textView.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
标签:io ar os sp on bs line new as
原文地址:http://my.oschina.net/u/1473377/blog/340338