Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 리펙토링
- uitableview
- Refactoring
- Protocol
- UITextView
- ribs
- UICollectionView
- combine
- MVVM
- SWIFT
- 스위프트
- Human interface guide
- HIG
- ios
- RxCocoa
- 애니메이션
- Xcode
- collectionview
- uiscrollview
- swiftUI
- map
- 클린 코드
- Observable
- rxswift
- Clean Code
- clean architecture
- tableView
- 리팩토링
- swift documentation
- 리펙터링
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] UIView의 Equtable 개념 (#UIView를 == 연산자로 비교할 수 있는 이유) 본문
iOS 응용 (swift)
[iOS - swift] UIView의 Equtable 개념 (#UIView를 == 연산자로 비교할 수 있는 이유)
jake-kim 2024. 4. 17. 00:21UIView를 비교하기
- UIView의 인스턴스를 `==`로 비교가 가능
- 주의) UIView의 프로퍼티인 tag를 사용하는 경우도 있는데, tag를 사용하면 어떤 뷰인지 tag값을 일일이 확인해야 하므로 UIView인스턴스 그대로 비교하는 것을 지향할 것
class ViewController: UIViewController {
let view1 = UIView()
let view2 = UIView()
let view3 = UIView()
override func viewDidLoad() {
super.viewDidLoad()
printSomeView(view: view1)
}
func printSomeView(view: UIView) {
if view1 == view {
print("this is view1")
}
if view2 == view {
print("this is view2")
}
if view3 == view {
print("this is view3")
}
/*
this is view1
*/
}
}
== 연산자로 단순히 비교할 수 있는 이유는?
- == 연산자로 비교할 수 있는 원리는 Equtable 프로토콜을 준수해야하며 UIView는 Equtable을 따르고 있지 않지만, UIView는 UIResponder를 상속하여 사용
// Equatable 프로토콜
public protocol Equatable {
static func == (lhs: Self, rhs: Self) -> Bool
}
// UIView 구현체
@available(iOS 2.0, *)
@MainActor open class UIView : UIResponder, NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem, UITraitEnvironment, UICoordinateSpace, UIFocusItem, UIFocusItemContainer, CALayerDelegate {
...
}
- UIResponder의 super는 NSObject인 것을 확인
- NSObject의 구현체를 보면 extension으로 Equtable을 따르고 있으므로 '==' 연산자로 UIView 인스턴스 비교가 가능한 것
extension NSObject : Equatable, Hashable {
...
}
* 참고
- https://www.cppblog.com/iuranus/archive/2011/04/13/144109.html
- https://stackoverflow.com/questions/42552958/comparing-instances-of-uitableview-in-swift)
'iOS 응용 (swift)' 카테고리의 다른 글
Comments