Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- PageViewController
- pbxfilesystemsynchronizedrootgroup
- JSONSerialization
- Custom PageViewController
- Xcode
- programmers
- CustomCode
- cocoapods
- 정보처리기사
- JSONParser
- dynamic height
- Codable
- swift
- pbxgroup
- parse
- 정보처리기사 실기 요약본
- 2018 KAKAO BLIND RECRUITMENT
- SwiftGen
- issecuretextentry
- IOS
- 프로그래머스
- UITableView
- Decodable
- storybaord
- 티스토리챌린지
- 위클리챌린지
- 정보처리기사 실기
- Pod
- RealmSwift
- JSON
Archives
- Today
- Total
목록didSelectItemAt (1)
iOS 개발일기
[Swift] 'didSelectItemAt' 함수가 호출되지 않는 이유
func tableView( _ tableView: UITableView, didSelectRowAt indexPath: IndexPath ) { ... } func collectionView( _ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath ) { ... } 위 두 함수가 호출되지 않는 이유 1. delegate를 설정해주지 않았을 경우 tableView.delegate = self collectionView.delegate = self 위 같은 방법은 단순한 방법이라 실수를 했을 경우가 많을 것 같네요. 2. tableView 또는 collectionView의 상위 뷰가 'tapGesture'를 가지고 있는 경우' 이 ..
iOS/Swift
2023. 12. 7. 17:09