更改搜索栏中的文本框对齐方式

时间:2018-02-28 10:08:40

标签: ios swift uisearchbar uisearchcontroller

我想在Searchcontroller searchBar 中更改占位符的文字对齐

我使用此Swift代码在导航控制器中创建搜索栏:

@IBAction func searchwithAddress(_ sender: Any) {
    let searchController = UISearchController(searchResultsController: searchResultController)
    searchController.searchBar.delegate = self
    searchController.obscuresBackgroundDuringPresentation = false

    searchController.searchBar.becomeFirstResponder()
    definesPresentationContext = true
    self.present(searchController, animated: true, completion: nil)

}

如何在搜索栏中使用textalign?

1 个答案:

答案 0 :(得分:0)

您可以参考此link来更改搜索栏中占位符的对齐方式。

但我建议使用UITextField和UIImageView创建自己的搜索栏,并响应委托调用。