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
- loop
- 보라카이
- UIView
- 포켓몬 GO
- Example
- 스마트폰
- 샘플
- UITableView
- 앱스토어
- 포켓볼
- 신도림
- Check
- setting
- 얻는법
- Xcode
- swift
- 해몽
- 페이백
- 아이폰7
- 신도림 테크노마트
- afterdelay
- swift3
- simulator
- GCD
- 공략
- Bitcode
- error
- LG유플러스
- push
- IOS
Archives
- Today
- Total
목록NSIndexPath (1)
도래울
Comparing NSIndexPath Swift
var indexPath1 = NSIndexPath(forRow: 1, inSection: 0) var indexPath2 = NSIndexPath(forRow: 1, inSection: 0) var indexPath3 = NSIndexPath(forRow: 2, inSection: 0) var indexPath4 = indexPath1 println(indexPath1 == indexPath2) // prints "true" println(indexPath1 == indexPath3) // prints "false" println(indexPath1 == indexPath4) // prints "true" println(indexPath1 === indexPath2) // prints "true" pr..
개발/iOS
2016. 8. 8. 09:23