TableView
-
[ios - Swift] UITableView Swipe Button 만들기ios 2020. 11. 20. 20:00
1. leadingSwipeActionsConfigurationForRowAt, trailingSwipeActionsConfigurationForRowAt leadingSwipeActionsConfigurationForRowAt : 행의 앞 가장자리에서 표시할 스와이프 동작입니다. trailingSwipeActionsConfigurationForRowAt : 행의 끝 가장자리에서 표시할 스와이프 동작입니다. 우리는 위 두 가지의 델리게이트를 이용하도록 하겠습니다. func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? ..
-
[ios - Swift] UITableView CustomCell 만들기 (UITableView 1/2)ios 2020. 11. 17. 22:30
1. 스토리보드 화면 구성 우선 UITableView 내 UITableViewCell을 추가하여 아래 이미지와 같은 구조로 제작 후 TableView Row에서 보여주고 싶은 오브젝트를 추가하면 됩니다. 저는 사진, 이름, 상태 메시지를 나타낼 수 있는 Row를 만들기 위해 UIImageview, Lable을 추가했습니다. 이때 Contrains를 잘 맞춰 주셔야 Cell 내부에 있는 오브젝트가 Row안으로 숨지 않습니다. 마지막으로 TableViewCell을 선택 후 Attuributes inspector -> identifier을 확인하면 Reuse identifier라고 적혀있는 것을 확인할 수 있습니다. Reuse identifier은 Tableview에서 Cell을 사용하려 할 때 이전 Cell..