如何更改CNContactPickerViewController searchBar的颜色

我从viewcontroller启动CNContactPickerViewController,但是如何更改其中的搜索栏的textcolor。 导航栏为深蓝色,在iOS11中,默认的searchbartext为黑色。

我更新了修复swift的方法在你呈现CNContactPickerViewController之前,你应该设置UISearchBar的背景颜色

  UISearchBar.appearance().backgroundColor = UIColor.white let cancelButtonAttributes = [NSForegroundColorAttributeName: ColorConstant.baseColorGray] UIBarButtonItem.appearance(whenContainedInInstancesOf: [UISearchBar.self]).setTitleTextAttributes(cancelButtonAttributes, for: .normal)