【问题标题】:List nearby GeoFire locations in tableview在 tableview 中列出附近的 GeoFire 位置
【发布时间】:2016-04-10 13:40:03
【问题描述】:

目前,如下面的代码所示,我的 tableview 显示了 Firebase 的所有内容。如何将列表限制在附近?

DataService.dataService.BUSINESS_REF.observeEventType(.Value, withBlock: { snapshot in

        // A snapshot of the businesses data

        self.businesses = []

        if let snapshots = snapshot.children.allObjects as? [FDataSnapshot] {

            for snap in snapshots {

                // Make business array for the tableview
                if let postDictionary = snap.value as? Dictionary<String, AnyObject> {

                    let key = snap.key
                    let business = Business(key: key, dictionary: postDictionary)

                    // Show newest business first
                    self.businesses.insert(business, atIndex: 0)
                }
            }
        }

        // Update the table when there is new data

        self.searchTableView.reloadData()
    }) 

我是 iOS 编程的新手,上面的代码来自一个教程,我意识到我需要使用 GeoFire 的 GFQuery 对象,但我就是不知道在我的代码中放在哪里。提前致谢!

【问题讨论】:

    标签: ios swift firebase geofire


    【解决方案1】:

    想通了。希望有人能提出更好的方法。

    func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    
        firebase = Firebase(url:"https://myapp.firebaseio.com/")
        geoFire = GeoFire(firebaseRef: firebase!.childByAppendingPath("geo"))
    
        let userLocation:CLLocationCoordinate2D = (locationManager.location?.coordinate)!
        let center = CLLocation(latitude: userLocation.latitude, longitude: userLocation.longitude)
        let span = MKCoordinateSpanMake(0.0125, 0.0125)
        let region = MKCoordinateRegionMake(center.coordinate, span)
        let regionQuery = geoFire?.queryWithRegion(region)
    
        UIApplication.sharedApplication().networkActivityIndicatorVisible = true
    
        regionQuery!.observeEventType(GFEventTypeKeyEntered, withBlock: { (key: String!, location: CLLocation!) in
    
            // Check for changes in Firebase database
            DataService.dataService.BUSINESS_REF.queryOrderedByKey().queryEqualToValue(key).observeEventType(.Value, withBlock: { snapshot in
    
                if let snapshots = snapshot.children.allObjects as? [FDataSnapshot]  {
    
                    for snap in snapshots {
    
                        if let postDictionary = snap.value as? Dictionary<String, AnyObject> {
    
                        //let key = snap.key
                        let business = Business(key: key, dictionary: postDictionary)
    
                        self.businesses.insert(business, atIndex: 0)
    
                        }
                    }
                }
    
                self.searchTableView.reloadData()
    
            })
        })
    }
    

    【讨论】:

      猜你喜欢
      • 2019-01-05
      • 2016-09-28
      • 2011-06-14
      • 2018-01-16
      • 1970-01-01
      • 2019-10-30
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多