要将[UIColor hx_colorWithHexRGBAString:@"#000000"] 这样的字符串替换为自定的宏。
如HEXCOLOR(0x000000)。
在XCode Replace 中选择 Replace\Regular Expression, 填写相应的正则如
\[UIColor hx_colorWithHexRGBAString:@\"#(.*)\"\]
替换为 HEXCOLOR(0x$1)
$1 就是正则匹配的字符。
要将[UIColor hx_colorWithHexRGBAString:@"#000000"] 这样的字符串替换为自定的宏。
如HEXCOLOR(0x000000)。
在XCode Replace 中选择 Replace\Regular Expression, 填写相应的正则如
\[UIColor hx_colorWithHexRGBAString:@\"#(.*)\"\]
替换为 HEXCOLOR(0x$1)
$1 就是正则匹配的字符。