前提・実現したいこと
画面を開く度にTableViewの中のデータがどんどん増えていってしまいます…
読み込むタイミングで一度空にしてからデータを表示したいです。
Tableviewを表示したいViewController
Swift
1import Alamofire 2import UIKit 3import SwiftyJSON 4 5@available(iOS 13.0, *) 6class cookingViewController: UIViewController, UINavigationControllerDelegate, UITableViewDelegate, UITableViewDataSource { 7 8 var selectedrecipe:[Int] = [] 9 10 @IBOutlet var baika: UITextField! 11 @IBOutlet var genkaritsu: UITextField! 12 @IBOutlet var rieki: UITextField! 13 @IBOutlet var genkaTotal: UITextField! 14 15 @IBOutlet var tableView: UITableView! 16 17 override func viewDidLoad() { 18 super.viewDidLoad() 19 20 tableView.delegate = self 21 tableView.dataSource = self 22 23 if(recipedata.shared.nameArray.count==0){ 24 getData() 25 } 26 27 NotificationCenter.default.addObserver(self, selector: #selector(cookingViewController.receivechange(_:)), name: Notification.Name("change"), object: nil) 28 29 } 30 31 @objc func receivechange(_ notification: NSNotification) { 32 let amountget = notification.userInfo!["amount"] as! String 33 let priceget = notification.userInfo!["price"] as! String 34 let cellget = notification.userInfo!["cellindex"] as! Int 35 recipedata.shared.amountArray[cellget] = amountget 36 recipedata.shared.priceArray[cellget] = priceget 37 38 tableView.reloadData() 39 } 40 41 42 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 43 return recipedata.shared.nameArray.count 44 } 45 46 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 47 let cell = UITableViewCell(style: .subtitle, reuseIdentifier: "Cell") 48 49 cell.textLabel?.text = recipedata.shared.nameArray[indexPath.row] 50 cell.textLabel?.adjustsFontSizeToFitWidth = true 51 cell.textLabel?.numberOfLines = 1 52 cell.detailTextLabel?.text = recipedata.shared.amountArray[indexPath.row] + recipedata.shared.taniArray[indexPath.row] + " " + recipedata.shared.priceArray[indexPath.row] + "円" 53 cell.detailTextLabel?.adjustsFontSizeToFitWidth = true 54 cell.detailTextLabel?.numberOfLines = 1 55 56 return cell 57 58 } 59 60 func getData(){ 61 62 let text = "https://script.google.com/macros/s/AKfycbzPwqMxXBfsxTrmvvProfELlvf-79QssWd0eAXZ6z5qFnBA4ao/exec" //取得したいURL 63 let url = text.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) 64 AF.request(url!, method: .get, parameters: nil, encoding: JSONEncoding.default).responseJSON { (response) in 65 switch response.result{ 66 case .success: 67 // 通信成功時 68 guard response.data != nil else { 69 return 70 } 71 72 do { 73 let googleData = try JSONDecoder().decode([GoogleData].self, from: response.data!) 74 75 googleData.forEach { item in 76 recipedata.shared.nameArray.append(item.name) 77 recipedata.shared.amountArray.append("(item.amount)") 78 recipedata.shared.taniArray.append(item.unit) 79 recipedata.shared.priceArray.append("(item.price)") 80 recipedata.shared.categoryArray.append("(item.category)") 81 } 82 } catch let error { 83 // JSON -> GoogleData にデコード失敗 84 print(error) 85 } 86 case .failure(let error): 87 // 通信の失敗 88 print(error) 89 } 90 self.tableView.reloadData() 91 92 } 93 } 94 95} 96
recipedata.swift
Swift
1 2import Foundation 3 4class recipedata{ 5 6 static let shared = recipedata() 7 8 var nameArray = [String]() 9 var amountArray = [String]() 10 var taniArray = [String]() 11 var priceArray = [String]() 12 var categoryArray = [String]() 13 14} 15
GoogleData.swift
Swift
1 2import Foundation 3 4 struct GoogleData: Decodable { 5 let name: String 6 let amount: String 7 let unit: String 8 let price: String 9 let category: String 10 11 private enum CodingKeys: String, CodingKey { 12 case name 13 case amount 14 case unit 15 case price 16 case category 17 } 18 } 19
試したこと
「もしデータがすでに入っていたら呼ばない」とすれば追加されないかと思い、
if(recipedata.shared.nameArray.count==0){ getData() }
と書いてみたのですが、特に変わらなかったです…
getData()自体は他のViewControllerでも同じように記述しています(セルに表示はせずデータ取得のみ)
ツールのバージョン
Xcode : Version 11.0
Swift : Apple Swift version 5.1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/17 01:52