簡體   English   中英

過濾UItableview Swift IOS

[英]Filtering UItableview Swift IOS

我正在嘗試根據從另一個VC傳回的變量過濾UITableView,該VC是處理過濾器UI的Eureka表單。

我想根據這兩個變量過濾tableview:

 var filterByPrice: Float?

 var filteredRentalTypes: Set<String>?

我已經使用了價格過濾器,但是在使用租賃類型進行過濾時遇到了麻煩。 可能有一種更有效的方法來執行此操作,但這是到目前為止的代碼。 使用我當前的代碼,我得到了出租類型過濾器的“索引超出范圍”崩潰。

這是我的TableViewVC:

class RentalTableViewVC: UIViewController, UITableViewDataSource, UITableViewDelegate  {

var rentalsArray = [Rental]()
var filteredArrary = [Rental]()
var myRentals = [String]()

var filterByPrice: Float?
var filteredRentalTypes: Set<String>?


static var imageCache: NSCache<NSString, UIImage> = NSCache()


@IBOutlet weak var tableView: UITableView!

var hidingBarMangar: HidingNavigationBarManager?


override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if segue.identifier == "toDetailVC" {
        let destination = segue.destination as? DetailVC
        let value = tableView.indexPathForSelectedRow?.row

        if filteredArrary.count != 0 {

            destination?.emailAdress = filteredArrary[value!].email!
            destination?.bond = filteredArrary[value!].bond!
            destination?.dateAval = filteredArrary[value!].dateAval!
            destination?.pets = filteredArrary[value!].pets!
            destination?.rent = filteredArrary[value!].price!
            destination?.rentalTitle = filteredArrary[value!].title!
            destination?.imageURL = filteredArrary[value!].imageURL!
            destination?.des = filteredArrary[value!].description!
            destination?.rentalType = filteredArrary[value!].rentalType!
            destination?.streetName = filteredArrary[value!].streetName!
            destination?.city = filteredArrary[value!].city!
            destination?.postcode = filteredArrary[value!].postcode!
        } else {
            destination?.emailAdress = rentalsArray[value!].email!
            destination?.bond = rentalsArray[value!].bond!
            destination?.dateAval = rentalsArray[value!].dateAval!
            destination?.pets = rentalsArray[value!].pets!
            destination?.rent = rentalsArray[value!].price!
            destination?.rentalTitle = rentalsArray[value!].title!
            destination?.imageURL = rentalsArray[value!].imageURL!
            destination?.des = rentalsArray[value!].description!
            destination?.rentalType = rentalsArray[value!].rentalType!
            destination?.streetName = rentalsArray[value!].streetName!
            destination?.city = rentalsArray[value!].city!
            destination?.postcode = rentalsArray[value!].postcode!
        }
    }
}


func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if filteredArrary.count != 0 {
        return filteredArrary.count
    } else {
        return rentalsArray.count
    }

}

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

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

  var rental = rentalsArray[indexPath.row]

    if self.filteredArrary.count != 0 {
        rental = filteredArrary[indexPath.row]
    }


    if let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as? RentalCell {




        var rentalImage = ""

        if rental.imageURL != nil {
            rentalImage = rental.imageURL!
        }


        if let img = RentalTableViewVC.imageCache.object(forKey: rentalImage as NSString) {
            cell.configureCell(rental: rental, image: img)

            return cell
        } else {
            cell.configureCell(rental: rental, image: nil)

            return cell
        }

    } else {
        return RentalCell()
    }

}




@IBAction func backPressed(_ sender: Any) {
    dismiss(animated: true, completion: nil)
}

override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)
    hidingBarMangar?.viewWillAppear(animated)
}

override func viewDidLayoutSubviews() {
    super.viewDidLayoutSubviews()
    hidingBarMangar?.viewDidLayoutSubviews()
}

override func viewWillDisappear(_ animated: Bool) {
    super.viewWillDisappear(animated)
    hidingBarMangar?.viewWillDisappear(animated)
}
override func viewDidLoad() {
    super.viewDidLoad()



    tableView.dataSource = self
    tableView.dataSource = self

    //Firebase observer
    DataService.ds.DBrefRentals.observe(.value) { (snapshot) in

        self.rentalsArray = []
        self.filteredArrary = []

        if let snapshots = snapshot.children.allObjects as? [DataSnapshot] {
            for snap in snapshots {
                if let dicOfRentals = snap.value as? Dictionary<String,AnyObject> {

                    let key = snap.key

                    let rental = Rental(postID: key, userData: dicOfRentals)
                    self.rentalsArray.append(rental)

                    //Placing filtered items in the filtered array
                    if self.filterByPrice != nil {
                        let priceAsFloat = (rental.price! as NSString).floatValue

                        if self.filterByPrice! >= priceAsFloat {
                            self.filteredArrary.append(rental)
                        }
                    }

                    if self.filteredRentalTypes != nil {


                        for rentals in self.filteredRentalTypes! {
                        if rental.rentalType == rentals {
                            print("******hh\(String(describing: self.filteredRentalTypes))")
                            self.filteredArrary.append(rental)
                                }

                        }
                    }


                }
            }
            self.tableView.reloadData()
        }



    }
    addHidingBar()


}

override func viewDidAppear(_ animated: Bool) {
    print("**********\(String(describing: filterByPrice)))")
}



func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    rentalsArray[indexPath.row].incrimentViews()

    let postViewsToFB = DataService.ds.DBrefRentals.child(rentalsArray[indexPath.row].postID!)

    postViewsToFB.child("views").setValue(rentalsArray[indexPath.row].views)

     performSegue(withIdentifier: "toDetailVC" , sender: nil)
}





func addHidingBar() {


    let extensionView = UIView(frame: CGRect(x: 0, y: 0, width: view.frame.size.width, height: 40))
    extensionView.layer.borderColor = UIColor.lightGray.cgColor
    extensionView.layer.borderWidth = 1
    extensionView.backgroundColor = UIColor(white: 230/255, alpha: 1)
    /*let label = UILabel(frame: extensionView.frame)
    label.text = "Extension View"
    label.textAlignment = NSTextAlignment.center
    extensionView.addSubview(label) */

    let btn = UIButton(frame: CGRect(x: 20, y: 15, width: 75, height: 10))
    btn.setTitle("Filter", for: .normal)
    let btnColour = UIColor(displayP3Red: 0.0, green: 122.0/255.0, blue: 1.0, alpha: 1.0)
    btn.setTitleColor(btnColour, for: .normal)
    btn.titleLabel?.font = headerFont
    btn.addTarget(self, action: #selector(filterBtnPressed), for: .touchUpInside)

    extensionView.addSubview(btn)
    hidingBarMangar = HidingNavigationBarManager(viewController: self, scrollView: tableView)
    hidingBarMangar?.addExtensionView(extensionView)

}

@objc func filterBtnPressed() {
    performSegue(withIdentifier: "toFilterVC", sender: nil)
}


}

您可能會在numberOfRows中返回不同的數組,並且它們的大小可能會有所不同,因此在對任何數組進行索引之前檢查計數,就好像數組計數!= 0並不意味着您可以使用可能大於0的index path.row對其進行索引,更改此行在cellForRow中

   if self.filteredArrary.count != 0 {
    rental = filteredArrary[indexPath.row]
}

  if  indexPath.row < self.filteredArrary.count  {
    rental = filteredArrary[indexPath.row]
}

暫無
暫無

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

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