-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<2주차> 자신만의 Custom View를 만들려면 어떻게 해야하는지 설명하시오 #9
Comments
|
1. Xib 이용해서 별도의 Storyboard처럼 관리 가능
2. UIView을 상속해서 코드로만 구현
|
|
|
|
UIView를 상속한 Class를 작성해야한다. 화면을 구성하는 방식에는 두가지가 존재하는데
1의 방식은 Xib를 통해 스토리보드 처럼 화면의 컴포넌트를 드래그 앤 드롭으로 쉽개 작성할 수있다. 하지만 이 작업은 Xib파일과 커스텀 클래스를 연결해주는 작업이 꼭 필요하다. 2의 방식은 모든 컴포넌트를 코드를 통해 구성하는 방식이다. 이는 코드의 양이 엄청나게 늘어나는 단점이 있지만 차지하는 용량자체가 적고 에러핸들리이 편한 장점이 있다. |
Custom View 만들기 :
두가지 목적이 있고 내 생각에 두개의 용도가 조금 다르다고 생각 Xib는 미니 스토리보드이므로, ViewController 중간에 커스텀 요소가 있는 경우에 사용을 하는게 편합니다 |
No description provided.
The text was updated successfully, but these errors were encountered: