ดู CHANGELOG สำหรับรายละเอียด
- มุมมองการค้นหาที่ยอดเยี่ยม เขียนด้วย Swift 5.0 ปรากฏมุมมองการค้นหาเหมือนกับมุมมองการค้นหา Pinterest คุณสามารถปรับแต่งไลบรารีนี้ได้อย่างเต็มที่ คุณยังสามารถใช้ไลบรารีนี้กับ Realm! ดูการใช้งานด้านล่าง
YNSearch
เขียนด้วย Swift 5.0 เข้ากันได้กับ iOS 8.0+
YNSearch มีให้บริการผ่าน CocoaPods หากต้องการติดตั้ง เพียงเพิ่มบรรทัดต่อไปนี้ใน Podfile ของคุณ:
pod 'YNSearch'
github "younatics/YNSearch"
ตั้งค่าหมวดหมู่ (จำเป็น) และประวัติการค้นหา (ไม่บังคับ)
import YNSearch
let demoDatabase = [ " Menu " , " Animation " , " Transition " , " TableView " , " CollectionView " , " Indicator " , " Alert " , " UIView " , " UITextfield " , " UITableView " , " Swift " , " iOS " , " Android " ]
ynSearch . setCategories ( value : demoDatabase )
ynSearch . setSearchHistories ( value : demoDatabase )
self . ynSearchinit ( )
ตั้งค่าฐานข้อมูล (จำเป็น) และคีย์ (จำเป็น) คีย์จะแสดงใน YNSearchListView
คุณสามารถตั้งค่าฐานข้อมูลของคุณ [Any]
หากคุณต้องการปรับแต่ง
let database1 = YNDropDownMenu ( key : " YNDropDownMenu " )
let database2 = YNSearchData ( key : " YNSearchData " )
let demoDatabase = [ database1 , database2 ]
self . initData ( database : demoDatabase )
ตั้งค่าผู้รับมอบสิทธิ์ YNSearchListView
func ynSearchListView ( _ ynSearchListView : UITableView , cellForRowAt indexPath : IndexPath ) -> UITableViewCell {
let cell = self . ynSearchView . ynSearchListView . dequeueReusableCell ( withIdentifier : YNSearchListViewCell . ID ) as! YNSearchListViewCell
if let ynmodel = self . ynSearchView . ynSearchListView . searchResultDatabase [ indexPath . row ] as? YNSearchModel {
cell . searchLabel . text = ynmodel . key
}
return cell
}
func ynSearchListView ( _ ynSearchListView : UITableView , didSelectRowAt indexPath : IndexPath ) {
if let ynmodel = self . ynSearchView . ynSearchListView . searchResultDatabase [ indexPath . row ] as? YNSearchModel , let key = ynmodel . key {
// Call listview clicked based on key
self . ynSearchView . ynSearchListView . ynSearchListViewDelegate ? . ynSearchListViewClicked ( key : key )
// return object you set in database
self . ynSearchView . ynSearchListView . ynSearchListViewDelegate ? . ynSearchListViewClicked ( object : self . ynSearchView . ynSearchListView . database [ indexPath . row ] )
// Append Search history
self . ynSearchView . ynSearchListView . ynSearch . appendSearchHistories ( value : key )
}
}
รับข้อมูลของคุณด้วย Realm
let datas = realm . objects ( RealmModel . self )
Realm ไม่ใช่ประเภทคอลเลกชัน ดังนั้นคุณต้องแปลงอีกครั้งเป็นประเภท [Any]
ซึ่งจะค้นหาสตริงทั้งหมดใน RealmModel ของคุณและแสดงผลลัพธ์
var dataArray = [ Any ] ( )
for data in datas {
let searchModel = RealmModel ( )
searchModel . author = data . author
searchModel . detail = data . detail
searchModel . title = data . title
searchModel . type = data . type
dataArray . append ( searchModel )
}
self . initData ( database : dataArray )
เสร็จแล้ว!
YNSearchViewController: Inherit this viewcontroller
|-- YNSearchTextFieldView: YNSearchTextField with cancel button
| |-- YNSearchTextField: Search UITextfield
| |-- cancelButton: Show when YNSearchTextField textFieldDidBeginEditing
|
|-- YNSearchView : get both YNSearchMainView and YNSearchListView
| |-- YNSearchMainView: First view that you can see
| | |-- categoryLabel: Cateogry label
| | |-- [YNCategoryButton]: cateogory buttons
| | |-- searchHistoryLabel: Search history label
| | |-- [YNSearchHistoryView]: history views
| | | |-- [YNSearchHistoryButton]: Search history button
| | | |-- [closeButton]: Close button
| |
| |-- YNSearchListView: UITableview with search result
ตั้งค่า YNSearchDelegate
หากคุณต้องการให้โทรกลับ
self . delegate = self
func ynSearchHistoryButtonClicked ( text : String ) {
print ( text )
}
func ynCategoryButtonClicked ( text : String ) {
print ( text )
}
func ynSearchListViewClicked ( text : String ) {
print ( text )
}
func ynSearchListViewClicked ( object : YNSearchModel ) {
print ( object )
}
ตั้งค่าประเภท YNCategoryButton
self . ynSearchView . ynSearchMainView . setYNCategoryButtonType ( type : . colorful )
ดูการใช้งานเพิ่มเติมในการสาธิต
YNSearch
นี้ตามลำดับชั้นการดูได้อย่างเต็มที่ คุณ
YNSearch มีให้บริการภายใต้ใบอนุญาต MIT ดูไฟล์ใบอนุญาตสำหรับข้อมูลเพิ่มเติม