분류 전체보기533 [iOS] setContentOffset의 animation 시간 조절하기 Change the speed of setContentOffset:animated:? Is there a way to change the speed of the animation when scrolling a UITableView using setContentOffset:animated:? I want to scroll it to the top, but slowly. When I try the following, it causes the stackoverflow.com 일반적으로 scrollView의 setContentOffset의 animation은 이런식으로 호출한다. self.collectionView.setContentOffset(CGPoint(x: 0, y: 0), animated: true) .. 2022. 7. 25. [iOS] UIView LifeCycle 생명주기 Apple Developer Documentation developer.apple.com UIView LifeCycle Callback method didAddSubview(_:) view에게 subview가 추가됨을 알린다. willRemoveSubview(_:) view에게 subview가 추가될 것임을 알린다. willMove(ToSuperview:) view에게 superview가 변경될 것임을 알린다. didMoveToSuperview() view에게 superview가 변경되었음을 알린다. willMove(ToWindow:) view에게 window객체가 변경될 것임을 알린다. didMoveToWindow() view에게 window객체가 변경됨을 알린다. UIViewController와 UI.. 2022. 7. 18. [iOS] Public Beta vs Developer Beta Apple’s Public vs. Developer Beta: What’s the Difference? Should you get the developer or public beta for the latest iOS, iPadOS, macOS, or watchOS release? Here’s the difference between the two. www.makeuseof.com 애플은 매년 새로운 iOS, mac OS 버전을 출시한다. full OS의 정식 출시를 앞서 몇 달 전부터 Beta 버전을 사용할 수 있는데, Public Beta와 Developer Beta로 나뉘게 된다. Public Beta full version과 동일하게 user가 자신의 디바이스에서 beta 버전의 OS를 설치해 새로.. 2022. 7. 17. [Swift] 특정 class 상속받아야만 protocol을 채택하도록 제약 걸기 특정 class 상속받아야만 protocol을 채택하도록 제약 걸기 protocol을 정의할 때, 해당 protocol을 특정 class를 상속받는 class에서만 채택하도록 제약을 걸고 싶을 때 활용할 수 있는 방법 아래 2가지 문법으로 정의가능 둘 다 같은 의미와 효과를 가진다. 1. where 절 활용 protocol BaseProtocol where Self: BaseObject { } 2. 상속 문법 활용 protocol BaseProtocol: BaseObject { } 2022. 7. 16. 이전 1 ··· 13 14 15 16 17 18 19 ··· 134 다음