Notice
Recent Posts
Recent Comments
Link
관리 메뉴

김종권의 iOS 앱 개발 알아가기

[iOS - swift] UIView의 Equtable 개념 (#UIView를 == 연산자로 비교할 수 있는 이유) 본문

iOS 응용 (swift)

[iOS - swift] UIView의 Equtable 개념 (#UIView를 == 연산자로 비교할 수 있는 이유)

jake-kim 2024. 4. 17. 00:21

UIView를 비교하기

  • 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인 것을 확인

https://www.cppblog.com/iuranus/archive/2011/04/13/144109.html

  • 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)

Comments