私は作成しているアプリケーションのバックエンドとしてFirebaseを使用することに決めました。私が気づいたことの1つは、テーブルビューのデータが入力されると、Firebaseへのネットワーク接続が終了しないということです。Firebaseは、データを1回ロードし、完了ハンドラを使用して閉じます。
ユーザーデータが枯渇しないように接続を閉じる方法はありますか?データを取得するコードでは、ローカルに保存するので、まだそこに保存されます。
class HomeTableViewController: UITableViewController{
//firebase refrences
var restaurantArray = [Restaurant]()
var dataBaseRef: FIRDatabaseReference! {
return FIRDatabase.database().reference()
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
override func viewDidLoad() {
super.viewDidLoad()
title = "Home"
navigationItem.leftBarButtonItem = UIBarButtonItem(image: #imageLiteral(resourceName: "menuIcon"), style: .plain, target: self, action: #selector(SSASideMenu.presentLeftMenuViewController))
navigationItem.leftBarButtonItem?.setBackButtonBackgroundImage(#imageLiteral(resourceName: "backButton"), for: .normal , barMetrics: .default)
tableView.backgroundView = UIImageView(image: UIImage(named: "Background"))
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(true)
fetchRestaurants()
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
func fetchRestaurants(){
dataBaseRef.child("AthensRestaurants/Restaurants").observe(.value, with: { (snapshot) in
var results = [Restaurant]()
for res in snapshot.children{
let res = Restaurant(snapshot: res as! FIRDataSnapshot)
results.append(res)
}
self.restaurantArray = results.sorted(by: { (u1, u2) -> Bool in
u1.name < u2.name
})
self.tableView.reloadData()
self.dataBaseRef.removeAllObservers()
}) { (error) in
print(error.localizedDescription)
}
}
// MARK: - Table view data source
// MARK: - Table view data source
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return restaurantArray.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "restaurantsCell", for: indexPath) as! RestaurantsTableViewCell
// Configure the cell...
cell.configureCell(res: restaurantArray[indexPath.row])
cell.backgroundColor = UIColor.clear
cell.contentView.layer.borderColor = UIColor.clear.cgColor
cell.contentView.layer.borderWidth = 1.5
return cell
}
//transfers data to new page
func showRestaurantViewControllerWith(_ res: Restaurant) {
let storyBoard = UIStoryboard(name: "Main", bundle: nil)
let destinationVC = storyBoard.instantiateViewController(withIdentifier: "RestaurantDetails") as! RestaurantDetailViewController
destinationVC.resTransfer = res
self.navigationController?.pushViewController(destinationVC, animated: true)
}
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.showRestaurantViewControllerWith(self.restaurantArray[indexPath.row])
}
}
テーブルビューを上下にスクロールするたびにエネルギー消費量が増え、ネットワークデータを多く使用しているデータを取得しています –