我有一个问题。我想在我的项目中实现 UAModalpanelview。起初它工作得很好......我实现了文件......无论如何。但是现在我想运行该应用程序,但每次都收到此错误。正是因为“中心”,它向我展示了“发现多个名为中心的方法,结果、参数类型或属性不匹配”。
- (IBAction)showPopup:(id)sender {
UAModalPanel *modalPanel = [[UAExampleModalPanel alloc] initWithFrame:self.view.bounds];
[self.view addSubview:modalPanel];
[modalPanel showFromPoint:[sender center]];
}
谁能帮我解决这个问题?
谢谢。