继这里的问题之后,如何创建模式视图,用于在 iOS 中启动应用程序?
我想加载这个弹出窗口,代码在这里,https://github.com/icanzilb/MTPopupWindow而不是 UIAlertView。
有人可以向我解释如何做到这一点吗?
谢谢先进
继这里的问题之后,如何创建模式视图,用于在 iOS 中启动应用程序?
我想加载这个弹出窗口,代码在这里,https://github.com/icanzilb/MTPopupWindow而不是 UIAlertView。
有人可以向我解释如何做到这一点吗?
谢谢先进
MTPopupWindow
将类(.h 和 .m 文件)拖放到您的项目中#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];