본문 바로가기

ios83

[iOS] UIPageViewController Apple Developer Documentation developer.apple.com [iOS - swift] PageViewController (페이지 뷰 컨트롤러) PageViewController 구현 원리 ViewController가 들어있는 배열을 준비 첫번째 ViewController를 PageViewController에 set 초기화 나머지 ViewController 전환은 DataSource, Delegate에서 index값을 바꿔가며.. ios-development.tistory.com UIPageViewController Android의 ViewPager와 유사하게 여러 Page를 navigating해서 이동할 수 있다. 각 page를 관리하는 child viewController들.. 2022. 5. 21.
[iOS] UIView와 CALayer의 차이 [iOS - swift] View와 Layer의 차이 (UIView, CALayer) View와 Layer private let someView: UIView = { let view = UIView() view.backgroundColor = .systemBlue view.layer.shadowOffset = CGSize(width: 0, height: 10) view.layer.shadowColor = UIColor.black.cg.. ios-development.tistory.com UIView와 CALayer의 차이 UIView는 UIKit, CALayer는 Core Animation에 포함됨 OpenGL은 매우 low한 레벨에서 그래픽을 컨트롤할 수 있기 때문에 쉽게 사용하기 어렵기 때문에, 고수.. 2022. 5. 21.
[iOS] UIViewPropertyAnimator [iOS - swift] 1. UIViewPropertyAnimator, AnimationStates - 개념 1. UIViewPropertyAnimator, AnimationStates - 개념 2. UIViewPropertyAnimator, AnimationStates - fractionComplete, interactive animation (상호작용 애니메이션) UIViewPropertyAnimator UIView.animate와.. ios-development.tistory.com Apple Developer Documentation developer.apple.com UIViewPropertyAnimator view들의 변화들을 animation으로 처리하고, 해당 animation들의 동적인.. 2022. 5. 15.
[iOS] UIView.transition Apple Developer Documentation developer.apple.com UIView. transition 특정 container view에 대해서 transition(전환) 애니메이션을 만들 수 있다. removeFromSuperView, addSubview와 같이 특정 뷰에 subview를 추가, 삭제, 보이기, 숨기기 등을 할 때 전환 효과를 줄 수 있다. class ViewController: UIViewController { @IBOutlet weak var redView: UIView! var blueView: UIView = { let view = UIView(frame: CGRect(x: 0, y: 0, width: 100, height: 100)) view.backgrou.. 2022. 4. 24.