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
- Xcode
- error
- 페이백
- GCD
- 샘플
- Bitcode
- 보라카이
- Example
- LG유플러스
- UITableView
- 신도림
- 얻는법
- Check
- swift
- 포켓볼
- simulator
- loop
- 앱스토어
- 아이폰7
- 공략
- 신도림 테크노마트
- push
- UIView
- IOS
- setting
- 해몽
- 포켓몬 GO
- swift3
- afterdelay
- 스마트폰
Archives
- Today
- Total
목록click (1)
도래울
swift Get button click inside UI table view cell
1) In your cellForRowAtIndexPath: method, assign button tag as index:cell.yourbutton.tag = indexPath.row;2) Add target and action for your button as below:[cell.yourbutton addTarget:self action:@selector(yourButtonClicked:) forControlEvents:UIControlEventTouchUpInside];3) Code actions based on index as below in ViewControler:-(void)yourButtonClicked:(UIButton*)sender { if (sender.tag == 0) { // ..
개발/iOS
2016. 7. 13. 09:22