hi there, in my project it is using string like
@"this is 30% save"
but I can't edit it to @"this is 30%% save" because it is loaded from server (as NSString from NSMutableArray objectAt..... you know...)
so is there any way how to
1. take string
2. look for %
3. if there is % - add another % to work ok
4. save new string...?