0
我知道如何檢查是否字符串(NSString
)包含了另一個較小的stringFor這在做類似粗體:搜索字符串中的字符串,使其在原有的字符串
if ([string rangeOfString:@"bla"].location == NSNotFound) {
NSLog(@"string does not contain bla");
} else {
NSLog(@"string contains bla!");
// here I need to make that string bold
}
從這個我想
除了如果我得到那個字符串,我想在原始字符串中加粗。所以,有什麼辦法讓我的字符串粗體? 在此先感謝...
爲粗體字符串.. http://stackoverflow.com/questions/6013705/any-way-to-bold-part-of-a-nsstring – janusbalatbat