관리 메뉴

김종권의 iOS 앱 개발 알아가기

[iOS - framework] 로그인 및 회원가입 화면 본문

iOS framework

[iOS - framework] 로그인 및 회원가입 화면

jake-kim 2020. 4. 27. 18:04

- LoginViewController

- not storyboard, but programmatically

- constraints와 autolayout으로 핸드폰의 가로와 세로 비율을 통해 뷰사이의 간격 설정

 

framework 화면, LoginViewController
배경 화면에 들어갈 apple.jpg

 

* 사용방법

버튼의 이벤트 등록은 sceneDelegate.swift의 sceneWillEnterForeground(_ scene: UIScene)에 할 것

※ scene()에 하면 아직 뷰컨트롤러의 viewDidLoad가 호출이 안된 상태이므로 뷰컨트롤러 객체를 다룰려고 하면 오류

sceneDelegate생명주기 참고

 

[iOS - SceneDelegate] iOS13이상 버전의 SceneDelegate

1. iOS12이하 버전 : App하나는 오로지 각각 하나의 Process와 UI를 유지 (AppDelegate에서 모두 관여) - Process Lifecycle : Process 상태 - UI Lifecycle : active, inactive, background, foreground 상태 관..

ios-development.tistory.com

 

* framework file : https://github.com/JK0369/JKUILogin

 

* 사용 소스코드

Comments