我已经为我的应用程序在TextMate
. 然后将其粘贴到.rtf
由XCode
.
显示了文件的内容,但是当有换行符时我可以看到反斜杠。我错过了什么?
NSError *e = Nil;
NSString * tc = [NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"termsAndConditions" ofType:@"rtf"] encoding:NSUTF8StringEncoding error:&e];
NSLog(@"%@",e);
tvView.text = tc;