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
- NotificationService Extension
- Flutter NativeView
- swift 문자
- 스위프트 푸시
- flutter 회전
- 안드로이드 바로가기
- 안드로이드 숏컷
- 스위프트 앨범
- Swift flutterviewcontroller
- 스위프트 웹뷰
- 플러터 뷰 컨트롤러
- swift sms
- native flutter view
- 노티피케이션 익스텐션
- Swift flutterview
- 푸시 데이터 저장
- 안드로이드 에러
- 앱 백그라운드 푸시 데이터 저장
- 안드로이드 앨범
- Flutter UIKitView MethodChannel
- 스위프트 테이블 뷰 셀
- 안드로이드 FCM
- 스위프트 카메라
- 앱 꺼졌을 때 푸시 데이터 저장
- flutter rotate
- silent push
- 스위프트 UserDefaults
- swift autolayout
- FlutterView MethodChannel
- 스위프트
Archives
- Today
- Total
Things take time
[SWIFT] Create UITableView programmatically, 테이블 뷰 코드로 본문
[로직]
설명은 생략한다. 말 그대로 스토리보드를 활용하지 않고 뷰 컨트롤러 스위프트 파일만 연결하고 시작한다.
[코드]
import UIKit class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { let myTableView: UITableView = UITableView() let items: [String] = ["abc", "def", "ghi"] override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. // Do any additional setup after loading the view. self.myTableView.dataSource = self self.myTableView.delegate = self self.myTableView.register(UITableViewCell.self, forCellReuseIdentifier: "TableViewCell") self.view.addSubview(self.myTableView) self.myTableView.translatesAutoresizingMaskIntoConstraints = false self.view.addConstraint(NSLayoutConstraint(item: self.myTableView, attribute: .top, relatedBy: .equal, toItem: self.view, attribute: .top, multiplier: 1.0, constant: 0)) self.view.addConstraint(NSLayoutConstraint(item: self.myTableView, attribute: .bottom, relatedBy: .equal, toItem: self.view, attribute: .bottom, multiplier: 1.0, constant: 0)) self.view.addConstraint(NSLayoutConstraint(item: self.myTableView, attribute: .leading, relatedBy: .equal, toItem: self.view, attribute: .leading, multiplier: 1.0, constant: 0)) self.view.addConstraint(NSLayoutConstraint(item: self.myTableView, attribute: .trailing, relatedBy: .equal, toItem: self.view, attribute: .trailing, multiplier: 1.0, constant: 0)) } func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.items.count } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell: UITableViewCell = tableView.dequeueReusableCell(withIdentifier: "TableViewCell", for: indexPath) as UITableViewCell cell.textLabel?.text = items[indexPath.row] return cell } }
'iOS (기능)' 카테고리의 다른 글
[SWIFT] UITAableViewCell의 RowHeight, 높이를 유동적(Dynamic)으로 조절하기 (0) | 2017.11.13 |
---|---|
[SWIFT] UITableView의 separator, 구분선 왼쪽이 안나올 때 (0) | 2017.11.13 |
[SWIFT] 네비게이션 컨트롤러가 있는 뷰 컨트롤러 열기 (0) | 2017.11.10 |
[SWIFT] UITextField의 Under Line 추가하기(밑줄) (0) | 2017.11.09 |
[SWIFT] 문자 메시지 보내기 (1) | 2017.11.02 |