- I want to find all occurrences of this:
[UIFont tly_primaryFontWithWeight:TVFontWeight300 size:14.0f]
Parse whatever is after "size:" and before the closing square bracket. In this case it would be "14.0f".
And then replace that occurence with this:
[UIFont tly_primaryFontWithSize:14.0f];
How can I do so?