UIKit - SearchController cancel 버튼 텍스트 변경하기
UIKit - SearchController cancel 버튼 텍스트 변경하기
아래와 같이 SearchController를 클릭하면 취소 버튼에 Cancel 문구가 표시됨.
이 문구를 다른 문구로 바꾸기 위해서는 아래와 같이 코드를 작성하면 됨.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import UIKit
final class BookListViewController: UIViewController {
private let searchController = UISearchController()
private func setupSearchController(){
...
// Cancel 버튼 문구 변경
searchController.searchBar.setValue("취소", forKey: "cancelButtonText")
self.navigationItem.searchController = searchController
}
}
결과
Reference
This post is licensed under CC BY 4.0 by the author.

