前提・実現したいこと
teratailのAPIを叩き、質問一覧をTableViewに表示させたいです(Alamofire
SwiftyJSON
を使用)。
MVPの練習をしたく、アーキテクチャはMVPを採用しています。
QuestionModel内でAPIを叩き、配列questions
に追加しています。
そして、処理結果をQuestionListViewPresenterへ渡し、NewArrivalQuestionListViewControllerでTableViewに表示させるといった流れです。
ただ、このコードではTableViewにデータが表示できないでいます。
QuestionModelのfunc updateQuestions()
内、print(self.questions)
にてデータが出力されていることから、データは取得できているようです。
そのため、QuestionmodelからQuestionListViewPresenterへ処理結果ががうまく渡せていないものと推測しています。
実際にQuestionListViewPresenterのfetchQuestions()
内、print(questionModel.questions)
では[]
が出力されています。
ただ、そこからいろいろ調べてみましたが原因が分からず、解決策をご教示いただけませんでしょうか?
該当のソースコード
QuestionEntity
1struct QuestionEntity { 2 var id: Int 3 var title: String 4 var tags: [String] 5 var displayName: String 6 var photo: String 7 var created: String 8 var isAccepted: Bool 9 10 init(id: Int, title: String, tags: [String], displayName: String, photo: String, created: String, isAccepted: Bool) { 11 self.id = id 12 self.title = title 13 self.tags = tags 14 self.displayName = displayName 15 self.photo = photo 16 self.created = created 17 self.isAccepted = isAccepted 18 } 19}
QuestionModel
1class QuestionModel { 2 3 var questions: [QuestionEntity] = [] 4 5 func fetchQuestions() { 6 print("fetch") 7 Alamofire.request("https://teratail.com/api/v1/questions").responseJSON { response in 8 guard let object = response.result.value else { return } 9 let json = JSON(object) 10 json["questions"].forEach { (_, json) in 11 let id = json["id"].intValue 12 let title = json["title"].stringValue 13 let tags = json["tags"].arrayObject 14 let displayName = json["user"]["display_name"].stringValue 15 let photo = json["user"]["photo"].stringValue 16 let created = json["created"].stringValue 17 let isAccepted = json["isAccepted"].boolValue 18 self.questions.append(QuestionEntity(id: id, title: title, tags: tags as! [String], displayName: displayName, photo: photo, created: created, isAccepted: isAccepted)) 19 } 20 print(self.questions) 21 } 22 }
QuestionListViewPresenter
1class QuestionListViewPresenter { 2 var view: NewArrivalQuestionListViewController! 3 var questionModel = QuestionModel() 4 var numberOfQuestions: Int { 5 return questionModel.questions.count 6 } 7 8 func updateQuestions() { 9 questionModel.refreshQuestions() 10 questionModel.fetchQuestions() 11 print(questionModel.questions) 12 } 13 14 func entity(at indexPath: IndexPath) -> QuestionEntity { 15 return questionModel.questions[indexPath.row] 16 } 17}
NewArrivalQuestionListViewController
1class NewArrivalQuestionListViewController: UIViewController { 2 3 @IBOutlet weak var newArrivalQuestionListTableView: UITableView! 4 var presenter = QuestionListViewPresenter() 5 var model: QuestionModel? 6 7 override func viewDidLoad() { 8 super.viewDidLoad() 9 initializeTableView() 10 presenter.updateQuestions() 11 }
参考記事
iOSをMVC,MVP,MVVM,Clean Architectureで実装してみた
【Swift】MVCから脱却したいのでMVPの勉強をした
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/05 09:56
2020/02/05 14:23
2020/02/05 14:37