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
- JSONSerialization
- RealmSwift
- dynamic height
- programmers
- Xcode
- 티스토리챌린지
- pbxfilesystemsynchronizedrootgroup
- JSON
- 위클리챌린지
- SwiftGen
- parse
- Decodable
- PageViewController
- Codable
- 정보처리기사 실기 요약본
- 정보처리기사
- JSONParser
- 프로그래머스
- pbxgroup
- UITableView
- issecuretextentry
- IOS
- 정보처리기사 실기
- swift
- CustomCode
- Custom PageViewController
- storybaord
- cocoapods
- 2018 KAKAO BLIND RECRUITMENT
- Pod
Archives
- Today
- Total
목록Custom PageViewController (1)
iOS 개발일기
[Swift] Custom PageViewController
기존 PageViewController를 사용한 방법이 아닌 UICollectionView를 이용하여 PageViewController를 구현해보았습니다. import UIKit class PageViewController: UIViewController { var indicatorConstraint: NSLayoutConstraint? var indicatorView: UIView! var naviCollection: UICollectionView! var pageCollection: UICollectionView! override func viewDidLoad() { super.viewDidLoad() setupControls() setupLayout() initData() } private func..
iOS/Swift
2022. 3. 22. 16:15