iOS
[iOS] Search Bar, UISearchBarDelegate 리스트에 검색 기능 추가하기
책 읽는 개발자_테드
2020. 3. 13. 18:00
반응형
IOS 에는 검색창 기능을 하는 Search Bar Object와 이 Object를 조작할 수 있게 도와주는 Protocol인 UISearchBarDelegate가 있다.
스토리보드에서 Search Bar를 화면에 추가하고 swift 코드를 통해 UISearchBarDelegate 내용을 구현해 주면 검색 기능을 만들 수 있다.
자세한 내용은 공식문서를 참고하자.
https://developer.apple.com/documentation/uikit/uisearchbardelegate
UISearchBarDelegate - UIKit | Apple Developer Documentation
Protocol UISearchBarDelegate A collection of optional methods that you implement to make a search bar control functional. Declarationprotocol UISearchBarDelegate OverviewA UISearchBar object provides the user interface for a search field on a bar, but it’s
developer.apple.com
반응형