1

继这里的问题之后,如何创建模式视图,用于在 iOS 中启动应用程序?

我想加载这个弹出窗口,代码在这里,https://github.com/icanzilb/MTPopupWindow而不是 UIAlertView。

有人可以向我解释如何做到这一点吗?

谢谢先进

4

1 回答 1

1
  • 下载github项目
  • MTPopupWindow将类(.h 和 .m 文件)拖放到您的项目中
  • 确保真正复制(而不是引用)它们(您必须启用一些复选框)
  • 此弹出窗口依赖于 QuartzCore,请确保您将该框架添加到您的项目中
  • 使用您要显示的内容创建 info.html 文件
  • 应该与您的其他源代码位于同一文件夹中
  • 在您的视图控制器#import "MTPopupWindow.h"中,在开头添加某处
  • 替换以下代码

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"hi" 
                                                    message:@"You have open this app first time"                                                  delegate:self 
                                          cancelButtonTitle:@"ok" 
                                          otherButtonTitles:nil];
    [alert show];
    

    使用此代码

    [MTPopupWindow showWindowWithHTMLFile:@"info.html" insideView:self.view];
    
于 2013-05-28T20:13:30.280 回答