1

我有这段代码可以将文本替换为图标。

 self.message = [self.message stringByReplacingOccurrencesOfString:@"(Y)" withString:@"\uE00E"];
    self.message = [self.message stringByReplacingOccurrencesOfString:@"<3" withString:@"\uE022"];
    self.message = [self.message stringByReplacingOccurrencesOfString:@"3>" withString:@"\uE022"];
  1. 有没有办法在一个方法调用中做到这一点?(数组参数..例如)
  2. 如果我必须多次调用这个,有没有办法提高记忆力?(不创建太多临时字符串)

提前致谢

4

0 回答 0