參考如下鏈接:
我要替換的是
查找
[UIImage imageNamed:@"age_0_2_normal"]
替換為:
[UIImage imageNamed:@"age_0_2_normal" inBundle:YYGameResourceBundle compatibleWithTraitCollection:nil]
查找的正則表達式:
\[UIImage imageNamed:@\"(.*)\"\]
替換的正則表達式:
\[UIImage imageNamed:@\"$1\" inBundle:YYGameResourceBundle compatibleWithTraitCollection:nil\]
說明一下:.* 為查找的匹配
替換表達式中的 $1 代表 .*
http://www.reibang.com/p/1e43741601ff