XIB
-
iOS :: TableView xib로 구현하기iOS 2019. 3. 11. 15:48
안녕하세요! 상어입니다. 이제 드디어 TableView를 구현하는 방법중 세번째 방법인 xib를 소개합니다!!저도 처음 TableView를 할 땐 cell에 일일히 그렸는데 xib를 안 이후는 요것만 사용해요 ㅎㅎ관리가 넘나 편하다눙~> Int { return 5 } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { guard let cell = tableView.dequeueReusableCell(withIdentifier: "sharkTableCell", for: indexPath) as? SharkTableViewCell else { return UITableViewCell()..