일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 미로찾기
- 후쿠오카 요도바시 하카타
- 삼성테스트
- 알고리즘
- 완전 탐색
- 백준
- 완전탐색
- 너비 우선 탐색
- 후쿠오카
- queue
- brute force
- 시뮬레이션
- deque
- 일본 여행
- 깊이 우선 탐색
- 플로이드 와샬
- BFS
- 삼성 SW 테스트
- 후쿠오카 캐널시티
- 후쿠오카 4박 5일
- IOS
- 플로이드
- 하카타역
- 삼성시험
- BOJ
- DP
- 큐
- dfs
- 후쿠오카 여행경비
- 다이나믹 프로그래밍
- Today
- Total
맛있는감귤
[iOS : Swift] 딕셔너리로 테이블 뷰 만들기 본문
기준
XCode 8.2
Swift 3.0
1. UI작성 및 Cell의 Identifer 설정
2. Code
class ViewController: UIViewController, UITableViewDataSource {
// MARK: Properties
// Use this string property as your reuse identifier,
// Storyboard has been set up for you using this String.
let cellReuseIdentifier = "MyCellReuseIdentifier"
// Choose some data to show in your table
let model = [
["text" : "Do", "detail" : "A deer. A female deer."],
["text" : "Re", "detail" : "A drop of golden sun."],
["text" : "Mi", "detail" : "A name, I call myself."],
["text" : "Fa", "detail" : "A long long way to run."],
["text" : "So", "detail" : "A needle pulling thread."],
["text" : "La", "detail" : "A note to follow So."],
["text" : "Ti", "detail" : "A drink with jam and bread."]
]
// MARK: UITableViewDataSource
// Add the two essential table data source methods here
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.model.count;
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: self.cellReuseIdentifier)!
let dictionary = self.model[(indexPath as NSIndexPath).row]
cell.textLabel?.text = dictionary["text"]
cell.detailTextLabel?.text = dictionary["detail"]
return cell
}
}
'iOS' 카테고리의 다른 글
[iOS : Swift] 테이블 뷰 셀 스타일 (0) | 2017.01.25 |
---|---|
[iOS : Swift] tableView index path 호출 과정 (0) | 2017.01.25 |
[iOS : XCode 8.2] 시뮬레이터 회전시 생기는 메시지 제거 (0) | 2017.01.19 |
[iOS : Swift] Segue 연결하는 3가지 방법 (0) | 2017.01.19 |