surnameField.text = "Fal à èà ò l'opo";
// remove space and apostrophe
NSString *surnarmeInput = [[surnameField.text stringByReplacingOccurrencesOfString:@" " withString:@""] stringByReplacingOccurrencesOfString:@"'" withString:@""];
我會刪除重音符號。刪除字符串的所有口音
結果 「Falaeaolopo」
小心,這不僅刪除口音,刪除其他字符,如西班牙字母'ñ'例如。 – jherran