I am searching into a UITableView
using this:
titles = [NSArray arrayWithArray:[datamanager titlesForEntriesBetween:(NSInteger)[slider minSelectedValue] and:(NSInteger)[slider maxSelectedValue]containing:searchText]];
How can I encode array value with NSASCIIStringEncoding
during the search process?
(Array contains "tête"
for example.. and when I search "tete"
nothing matches.. so I will encode array value just for my search)