我已经看到UAmodalPanel的一个非常好的示例代码,如下面的链接。但在我下载代码后,我不知道它是如何工作的。有没有人有任何想法,知道是否有任何教程?
非常感谢。
答案 0 :(得分:0)
UAModalPanel很容易理解。如果您不想使用块或委托,只需创建面板的实例并调用-showFromPoint:如下所示:
//create panel instance
UAExampleModalPanel *modalPanel = [[[UAExampleModalPanel alloc] initWithFrame:self.view.bounds title:@"Example"] autorelease];
// Add the panel to our view
[self.view addSubview:modalPanel];
// Show the panel from the center of the screen
[modalPanel showFromPoint:self.view.center];