Ben kullanarak bir görünüme bir subview eklemek bir uygulamayı yapıyorum addSubview:
bir de IBAction
. Aynı şekilde, bu düğmeye IBAction
tekrar dokunulduğunda removeFromSuperview
, buna eklenen alt görünümü çağırmalısınız IBAction
:
PSEUDO KODU
-(IBAction)showPopup:(id)sender
{
System_monitorAppDelegate *delegate = (System_monitorAppDelegate *)[[UIApplication sharedApplication] delegate];
UIView *rootView = delegate.window.rootViewController.view;
if([self popoverView] is not on rootView)
{
[rootView addSubview:[self popoverView]];
}
else
{
[[self popoverView] removeFromSuperview];
}
}