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 |
Tags
- Notification
- iOS16
- rxswift
- github
- MacOS
- Session
- Git
- JPA
- Apple
- IOS
- view
- Xcode
- 웹뷰
- 한글
- Firebase
- darkmode
- mac
- window
- SwiftUI
- Code
- error
- geofencing
- appstore
- Swift
- 이미지
- UIButton
- 개발자
- FLUTTER
- Archive
- Realm
Archives
- Today
- Total
목록addTarget (1)
EEYatHo 앱 깎는 이야기
Swift ) UIButton in Cell not working - EEYatHo iOS
class MyCell: UITableViewCell { ... func initFunc() { ... myButton.addTarget(self, action: #selector(myFunc(_:)), for: .touchUpInside) ... } @objc myFunc(sender: UIButton) { ... } ... } 이런식으로 셀 안에서 addTarget으로 셀 안에 있는 @objc func을 연결해줘봤자, .touchUpInside 이벤트를 받고, 처리하는 객체는 Cell 보다 상위에 있는 뷰컨트롤러가 합니다. 그래서 self는 상위에 있는 뷰컨으로 바뀌어야 할 것이며, @objc함수로 뷰컨에다가 선언해야합니다. 그러면 셀 안에 굳이 VC를 전달하고, 다시 함수를 참조해야하는데, 그것보다..
iOS, Swift
2021. 3. 22. 18:11