iOS处理语言的强大工具CFStringTransform : 智能地处理用户的输入内容,经典应用场景【索引】

文章目录

  • 前言
  • I、 CFStringTransform 初识
    • 1.1 Transform identifiers
      • 1.1.1 不同拼写之间的转换
      • 1.1.2 去掉重音和变音符号
      • 1.1.3 找出特殊字符的 Unicode 标准名
  • II、例子:通讯录索引

前言

通过对用户输入内容,利用CFStringTransform变换,可以轻松实现实现一个通用的搜索index

搜索内容可以是多语言的

I、 CFStringTransform 初识

很明显CFStringTransform 是 Core Foundation 中的一部分


/* Perform string transliteration.  The transformation represented by transform is applied to the given range of string, modifyin

你可能感兴趣的:(iOS进阶)