[GDF 15일차] Table 완성, Camera접근


[GDF 15일차] Table 완성, Camera접근

Table을 구현했다. TableCell을 만들었고 TableViewController가 아닌 커스텀하게 만들고 싶어 UIViewController Table delegate 활용 // 섹션에 표시할 셀의 개수 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 1 } // 섹션 수 func numberOfSections(in tableView: UITableView) -> Int { return challengeVM.numberOfChallenges } // 행에 대한 셀을 반환 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { guard let cell = tableView.dequeueReusableCell(withIdentifier: "Cha...



원문링크 : [GDF 15일차] Table 완성, Camera접근