我在这里使用此代码UIView Popup like UIAlertView创建 UIVIew 相同的 UIalertView。我从 UIViewController 推送新的 UIViewAlert,但我希望 UIViewAlert 出现,UIViewController 不点击或选择,然后 UIViewAlert 消失,UIVIewController 点击正常。在我的 ViewController 中有 1 个 tablview,1 个 tabbar 包括 4 个 UIButton。
我将新的 UIViewAlert 称为:
DetailView *detailAlert = [[DetailView alloc] init];
[self.view addSubview:detailAlert];
[detailAlert show];
[detailAlert release];
有人给我看看吗?谢谢