일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 앱스토어
- 아이폰7
- UITableView
- loop
- 신도림
- 스마트폰
- swift
- afterdelay
- GCD
- Check
- push
- 샘플
- LG유플러스
- 포켓몬 GO
- setting
- UIView
- 페이백
- 해몽
- 공략
- Bitcode
- 얻는법
- IOS
- swift3
- error
- Xcode
- 포켓볼
- simulator
- 보라카이
- Example
- 신도림 테크노마트
- Today
- Total
목록UITableView (4)
도래울
Try this:var checked = [Bool]() // Have an array equal to the number of cells in your table func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell = self.tableView.dequeueReusableCellWithIdentifier("cell") as! UITableViewCell //configure you cell here. if !checked[indexPath.row] { cell.accessoryType = .None } else if checked[indexPath.r..
self.tableView.beginUpdates() self.tableView.deleteRowsAtIndexPaths([indexPath!], withRowAnimation: UITableViewRowAnimation.Right) self.tableView.endUpdates() 함수를 사용하여 증권 시세의 데이터를 삽입 시키는 작업을 하는데 문제가 생겼다. *** Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-1145.66/UITableView.m:8272010-07-17 22:06:13.601 iPadUIBase[21630:207] *** Terminating app du..
서론UITableView는 iOS 기반 앱을 개발할 때 가장 많이 사용하는 UIKit 중에 하나이다. 이러한 UITableView에서는 UITable의 속성을 외부에서 (다른 클래스에서)변경하기 쉽게 하기 위해서 View의 처리를 하는 부분을 위임하는 delgate 방식을 사용한다. (물론 속성을 바로 접근해서 사용할 수 있는 것도 있다.)이 아티클에서 테스트를 하기 위해서 우리는 empty 프로젝트를 하나 만들고 UITableView 기반의 ViewController를 하나 추가하자. 이름은 SFTableViewController라고 지정했다. 편의에 맞게 다른 이름을 사용해도 상관없다. 그리고 특별히 XIB는 생성하지 않는다. 특별한 UI 구성 이외에 XIB를 사용할 일이 거의 없기 때문이다.뷰컨트롤..
In Swift there are no separate header and implementation files, the whole View Controller class is defined in the ViewController.swift file. Go to this file and right after the class ViewController: UIViewController { line add a constant containing some data for the table rows.let tableData = ["One","Two",Three"]Swift has inferred the constant as an Array of Strings. Next, set the number of rows..