If I have 3 different views that are defined in 3 corresponding functions, namely:
- (UIView *)getView1 { }
- (UIView *)getView2 { }
- (UIView *)getView3 { }
They are added to self.viewwhen a specific view is required.
My question is: how do we know which of these views is currently being displayed? Is there a parameter that will determine which view is current?
source
share