-1

Convert special characters like ë,à,é,ä all to e,a,e,a? Objective C

Dilip Mishra
  • 1,422
  • 13
  • 17

1 Answers1

0

Check out this answer here

https://stackoverflow.com/a/18320825/3899770

NSMutableString *str = [@"Être ou ne pas être. C'était là-bas." mutableCopy];
CFStringTransform((__bridge CFMutableStringRef)string, NULL, kCFStringTransformStripCombiningMarks, NO);
Community
  • 1
  • 1
Aris
  • 1,529
  • 9
  • 17
  • 2
    There is no need to repeat answers (unless you want to add more relevant information). If you think that the question has been asked and answered before then you can flag it as a duplicate. – Martin R Sep 07 '16 at 07:35
  • 1
    Well, thanks for letting me know, was just trying to help the guy out – Aris Sep 07 '16 at 07:40