반응형
iOS 16.1, Xcode 14.2, Swift 5, UIKit 환경에서 진행했습니다.
TableView에서 Cell을 설정할 때에 func tableView( ... cellForRowAt) 함수에서 indexPath마다 Cell을 다르게 설정해줍니다.반대로 indexPath를 가지고 TableView에서 특정 셀을 가져오려면 cellForRow라는 함수를 이용하면 됩니다.
let cell = tableView.cellForRow(at: indexPath) // as! CustomCell
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] 앱 내에 폴더 만들고 파일 저장하기(FileManager) (0) | 2023.03.04 |
---|---|
[iOS, Swift] hugging priorty 및 CompressionResistancePriority 수정(programmatic) (0) | 2023.03.03 |
[iOS, Swift] 이미지뷰에 이미지 넣기(인터넷 url 주소) (0) | 2023.02.28 |
[iOS, Swift] 이미지 파일 업로드하기 (alamofire, multipart-data) (0) | 2023.02.27 |
[iOS, Swift] UIMenu 기본적인 예제 (0) | 2023.02.26 |