Programming 34

[iOS] 팝업모달 만들기

1. VC1 VC2 만들기 2. VC2에 뷰 추가 👉뷰 사이즈는 팝업창의 크기 3. VC2의 가장큰뷰(?)배경 색상 바꾸기 반반 되어 있는 색중 하나 선택!! 4. VC1과 VC2의 세그를 연결한다 - 세그의 Kind는 Present Modally - 세그의 Presentation은 Over Current Context - 나는 애니메이션 뺐다☺️ https://www.youtube.com/watch?v=NBCped0ZcWE 응용은 프로젝트에서~~~ lin-ing-link.tistory.com/42 [공부기록]100일차_16일 핸드폰과 엑스코드 버전이 맞지않아 업데이트를 했다😭😭😭😭업데이트하기 싫었는데ㅠㅠ 엑스코드를 업데이트하고보니 DatePicker의 기본값이 바뀌어 버렸다!!!😳 캘린더도 나오고 상당..

Programming/iOS 2020.09.22

[iOS] UIKit에 대해 알아보기

UIKit Construct and manage a graphical, event-driven user interface for your iOS or tvOS app. UIKit은 iOS/tvOS앱을 사용자 인터페이스를 구현하고 이벤트를 관리하는 프레임워크다 Important Use UIKit classes only from your app’s main thread or main dispatch queue, unless otherwise indicated. This restriction particularly applies to classes derived from UIResponder or that involve manipulating your app’s user interface in any way ..

Programming/iOS 2020.09.19

[iOS]노티피케이션센터와 노티피케이션

Notification 노티피케이션을 통해 등록된 노티피케이션에 정보를 전달하기 위한 구조체 Notification Center 등록된 옵저버에게 동시에 노티피케이션을 전달하는 클래스 NotificationCenter 클래스는 노티피케이션을 발송하면 노티피케이션 센터에서 메세지를 전달한 옵저버의 처리할 때까지 대기 흐름이 동기적(synchronous) 노티피케이션을 비동기적으로 사용하려면 NotificationQueue를 사용 Notification.Name(_:~~) --> 노티피케이션을 식별하는 태그 Notification.default.post(_:~~) --> 노티피케이션을 노티피케이션 센터에 발송 Notification.default.addObserber :: addObserver(forName..

Programming/iOS 2020.09.12
반응형