簡體   English   中英

帶有表格視圖的搜索欄控制器

[英]Search Bar Controller with Table view in swift

我是Swift編程新手

具有tableview的SearchBar控制器。 我想在表格視圖中顯示多個學生,它的工作正常。 我可以將搜索欄控制器添加到表格視圖並顯示特定的學生數據。 表格視圖單元格包含學生信息和我想在搜索后顯示特定學生的圖像

這是代碼

@IBOutlet var SearchBarDisp:UISearchBar!

override func viewDidLoad()
 {
        super.viewDidLoad()
        searchController.searchResultsUpdater = self
        searchController.hidesNavigationBarDuringPresentation = false
        searchController.dimsBackgroundDuringPresentation = false
        tableView.tableHeaderView = searchController.searchBar  
   }

func updateSearchResults(for searchController: UISearchController) {
//todo
}

我可以從json獲取學生數據

func getKids(url : String) {

        UIApplication.shared.beginIgnoringInteractionEvents()

        var errorCode = "1"

        var msg = "Failed"

        var request = URLRequest(url: URL(string: "getstaffstudents",
                                          relativeTo: URL(string: serverURL+"/rkapi/api/"))!)

        let session = URLSession.shared

        request.httpMethod = "POST"

        let bodyData = "staffId=\(staffId)"

        request.httpBody = bodyData.data(using: String.Encoding.utf8);

        let task = session.dataTask(with:request,completionHandler:{(d,response,error)in

            do{

                if let data = d {

                    if let jsonData = try JSONSerialization.jsonObject(with: data, options: []) as? NSDictionary {

                        errorCode = String(describing: jsonData["errorCode"]!)

                        msg = jsonData["msg"] as! String

                       print("msg values",msg)

                        if errorCode == "0" {

                            if let kid_list = jsonData["students"] as? NSArray {

                                for i in 0 ..< kid_list.count {

                                    if let kid = kid_list[i] as? NSDictionary {

                                         kidHoleData.removeAll()

                                        let imageURL = url+"/images/" + String(describing: kid["photo"]!)

                                        self.kidsData.append(Kids(
                                            studentId: kid["studentId"] as? String,
                                            name:kid["name"] as? String,
                                            classId : kid["classId"] as? String,
                                            standard: ((kid["standard"] as? String)! + " " + (kid["section"] as? String)!),
                                            photo : (imageURL),
                                            school: kid["schoolName"] as? String,
                                            schoolId : "1",
                                            url : url)
                                        )
                                    }


                                }
                                self.loopCount += 1

                                self.do_table_refresh()
                             }

                        } else {
                            self.displayAlert("Kids", message: msg)
                        }

                    } else {

                        self.displayAlert("Kids", message: "Data Not Available. Please try again")

                    }
                }else {

                    self.displayAlert("Kids", message: "Please try again")

                }

            } catch let err as NSError {

                print("JSON Error \(err)")
            }
        })

        task.resume()
    }

表格檢視

 func numberOfSections(in tableView: UITableView) -> Int {

        return (kidsData.count == 0) ? 0 : 1
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        return kidsData.count


    }


  func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let cell =
            tableView.dequeueReusableCell(
                withIdentifier: "Kidscell", for: indexPath) as! KidsTableViewCell

        let maskLayer = CAShapeLayer()
        let bounds = cell.bounds

        maskLayer.path = UIBezierPath(roundedRect: CGRect(x: 3, y: 3, width: bounds.width-15, height: bounds.height-15), cornerRadius: 2).cgPath
        cell.layer.mask = maskLayer

        let row = (indexPath as NSIndexPath).row
        if(kidsData.count>0){

            let kid = kidsData\[row\] as Kids
            cell.kidNameLabel.text = kid.name
            cell.classLabel.text = kid.standard
            cell.kidNameLabel.lineBreakMode = .byWordWrapping
            cell.kidNameLabel.numberOfLines = 0
            cell.kidImageView.image = UIImage(named: "profile_pic")
            cell.kidImageView.downloadImageFrom(link: kid.photo!, contentMode: UIViewContentMode.scaleAspectFit)  //set your image from link array.

        }
        return cell

    }

我想在表格視圖中顯示特定的學生(例如,如果我可以將學生姓名搜索為vani,則在表格視圖中顯示學生的vani)請幫助我

將孔數據復制到AttenanceInfoDupilicate

 var attendanceInfoDupilicate = [AttendanceInfo]()

在Json服務調用內部

self.attendanceInfoDupilicate = self.attendanceInfo

更新搜索控制器

    func updateSearchResults(for searchController: UISearchController)
    {



        let searchToSeatch = AttendanceSearchBarController.searchBar.text

        if(searchToSeatch == "")
        {
            self.attendanceInfo = self.attendanceInfoDupilicate

        }
        else{

            self.attendanceInfo.removeAll()

            let AttedanceData = self.attendanceInfoDupilicate

            var kidsArray = [String]()

            for AttendanceInfo in AttedanceData
            {

                kidsArray.append(AttendanceInfo.name)
                if(AttendanceInfo.name.range(of: searchToSeatch!, options: .caseInsensitive) != nil)
                {
                    self.attendanceInfo.append(AttendanceInfo)

                }

            }




        }

        self.TableView.reloadData()


    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM