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
- 파이썬서버
- spring
- iOS계산기
- Swift
- 개발기록
- 맥
- MainScheduler
- Python
- 계산기앱만들기
- DispatchGroup
- Xcode
- iOS배포
- 스위프트
- 앱배포
- JavaScript
- AJAX
- 웹
- FLASK
- subscript
- 딩동말씀
- iOS앱배포
- jQuery
- Xib
- 계산기앱
- 자바스크립트
- FileOwner
- ios
- 앱버전구하기
- customclass
- 스프링
Archives
- Today
- Total
목록customview (1)
개발하는 뚝딱이
[iOS] 커스텀 뷰 생성하기, CustomClass와 File's Owner
커스텀 뷰를 생성할 일이 꽤 많은데, 다양한 방법과 사용이유를 공부해보았다! Storyboard나 코드로 커스텀 뷰 생성하기 (테이블뷰나 컬렉션뷰 셀에서 File's Owner 대신에 CustomClass를 사용해야 하는 이유) CustomClass와 FileOwner의 차이점 init 비교하기 Storyboard나 코드로 Custom View 생성하기 Storyboard로 CustomView 생성하기-A 1. CustomView.swift 파일 생성 import UIKit class CustomView: UIView { override init(frame: CGRect) { super.init(frame: frame) commonInit() } required public init?(coder aDec..
iOS
2021. 8. 14. 17:14