티스토리 뷰
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | //ViewController import UIKit class ViewController: UICollectionViewController { var Array = [String]() override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. Array = ["소풍","여행","운동회","스키장"] } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } override func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return Array.count } override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell { var cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath) as! UICollectionViewCell var label = cell.viewWithTag(5) as! UILabel var button = cell.viewWithTag(27) as! UIButton button.setTitle(Array[indexPath.row], forState: UIControlState.Normal) label.text = Array[indexPath.row] return cell } } | cs |
Navigation View Controller 에서 Table View 삭제 / CollectionViewController를 연결/
각각의 Collection마다 버튼과 라벨에 대한 값 넣고, 페이지 Show해주기
'[Swift] Notebook' 카테고리의 다른 글
Swift - local Date&Time View (0) | 2016.04.19 |
---|---|
Swift - PickerView를 통하여 데이터 가져오기 (0) | 2016.04.19 |
Swift 버튼으로 진동+내장 아이폰 효과음 내기 코드 (0) | 2016.04.18 |
Swift - 버튼으로 URL열기 및 전화,문자,메일 열기 (0) | 2016.04.18 |
Swfit - MapKit 사용하기 예제 (0) | 2016.04.18 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- API
- 개발
- lambda
- app
- 파이썬
- lib
- nginx
- OpenAPI
- FTP
- uWSGI
- Python
- s3
- jupyter
- serverless
- 기상청
- code review
- pycon
- Swift
- boto3
- swift3.0
- AWS
- Apple
- IOS
- css
- Django
- admin
- CocoaPods
- project
- ubuntu
- grib
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함