我有一个弹出视图,它被称为:
Info *infoview = [[Info alloc]init];
pop = [[UIPopoverController alloc]initWithContentViewController:infoview];
[pop setDelegate:self];
[pop presentPopoverFromRect:CGRectMake(-60, 30, 400, 400) inView:bigMenuView permittedArrowDirections:UIPopoverArrowDirectionDown animated:YES];
[infoview release];
在这个 popoverview 中(见代码)一个 info.xib 有一些 UIBUttons。
现在我想改变一些东西。单击按钮后,在我的“主视图”中。
注意:我可以在“First Responder”中访问我的 IBAction 方法,但没有任何操作。