일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- uitableview
- SWIFT
- swiftUI
- 리팩토링
- rxswift
- tableView
- HIG
- ribs
- clean architecture
- uiscrollview
- Refactoring
- Human interface guide
- 리펙토링
- 리펙터링
- Observable
- UITextView
- Protocol
- 클린 코드
- Xcode
- collectionview
- ios
- swift documentation
- combine
- MVVM
- Clean Code
- RxCocoa
- map
- 애니메이션
- 스위프트
- UICollectionView
- Today
- Total
목록removeFromSuperview (4)
김종권의 iOS 앱 개발 알아가기
UIStackView의 removeArrangedSubview 보통 UIStackView의 하위 뷰들을 제거할때 removeArrangedSubview를 통해 제거하는데, 이렇게만하면 memory leak이 발생 subviews에 접근하여 명시적으로 해당 뷰에서 removeFromSuperview()를 호출해줘야 제거가됨 ex) 메모리 릭 확인을 위해, 메모리에서 해제된경우 deinit에서 print문을 호출하는 뷰 정의 class MyView: UIView { init() { super.init(frame: .zero) backgroundColor = .yellow NSLayoutConstraint.activate([ heightAnchor.constraint(equalToConstant: 200), ..
대표적인 ContainerView를 사용하여 ViewController 관리하는 클래스 navigationController TabBarController PageViewController ContainerView에 ContentViewController 추가 및 삭제 추가 private func addContentsView() { addChild(contentTableView) contentTableView.view.frame = containerView.frame containerView.addSubview(contentTableView.view) contentTableView.didMove(toParent: self) } 삭제 @objc private func removeContentsView() ..
View를 추가하고 삭제 addSubview(_ view: UIView): child view로 추가할때 사용 removeFromSuperview(): child view를 삭제할때 사용 let myView = UIView() view.addSubview(myView) myView.removeFromSuperview() ViewController를 추가하고 삭제 추가 childViewController.didMove(toParent): UIViewController에 정의되어 있는 메서드이며, childVC가 추가될때 didMove가 불려지도록 설계가 되고 있으므로 추가되는 상황에서 호출 // ChildViewController 추가 addChild(vc) containerView.addSubview(v..
UIViewController들을 부모-자식 관계로 이용? A ViewController가 있을 때, A밑에 B ViewController가 존재하게 하는 방법? 자식으로 설정: parent 입장에서 설정 A.addChild(B) A.view.addSubview(B.view) B.didMove(toParent: A) parentVC.addChild(childVC): 특정 ViewController를 현재 ViewController의 자식으로 설정 parentVC.view.addSubview(childView): 추가된 childVC의 View가 보일 수 있도록 맨 앞으로 등장하게 하는 것 childVC.didMove(toParent: parentVC) / willMove : childVC입장에서는 언제 ..