ios - How to configure NSStringCompareOptions to handle a case sensitive search with the NSDiacriticInsensitiveSearch option enabled -


i need way configure nsstringcompareoptions handle case sensitive search nsdiacriticinsensitivesearch enabled.

example

my search has find word "gesu" in following text "gesù word find".

i've tried following combination:

self.pdfviewcontroller.textsearch.compareoptions = nsliteralsearch|nsdiacriticinsensitivesearch; 

but doesn't work.

any suggestions?


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -