Из одного UIViewController
я вызываю другого UIViewController
FullScreenViewController *anotherViewController = [[FullScreenViewController alloc] initWithNibName:@"FullScreenViewController" bundle:nil];
UIView *theWindow = [currentView superview];
[theWindow addSubview:newView];
В открывшемся FullScreenViewController
я хочу поставить UIButton
для вызова метода внутри родительского UIViewController
.
Есть способ сделать это?Как мне поступить?
Спасибо