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
- FLASK
- 계산기앱만들기
- Swift
- 자바스크립트
- FileOwner
- 웹
- 계산기앱
- MainScheduler
- 딩동말씀
- JavaScript
- 스프링
- jQuery
- ios
- subscript
- customclass
- iOS계산기
- 앱버전구하기
- 개발기록
- Python
- DispatchGroup
- spring
- 파이썬서버
- AJAX
- 스위프트
- Xcode
- 앱배포
- Xib
- iOS배포
- iOS앱배포
- 맥
Archives
- Today
- Total
목록nib (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