我在 UITextView 中使用此代码
nsstring *var = @"2013 11 30 this is an example";
NSRange isRange30Nov = [fechaHorarios rangeOfString:@"20131130" options:NSCaseInsensitiveSearch];
if(isRange30Nov.location == 0) {
// FOUND
}
并且只需要在我的 UITextView 中将日期更改为粗体我该怎么办? 谢谢!!