评估器不工作
我正在尝试在我的应用程序中实现 Appirater。我已按照自述文件中的说明进行操作,并且该应用程序在 Xcode 中运行良好。但无论我尝试运行多少次,都没有显示任何消息。我已经编辑了#defines,所以问题不应该存在。当 APPIRATER_DEBUG 启用时,它也不会显示任何内容。我尝试过清理该项目,但这似乎不起作用。
I'm trying to implement Appirater in my app. I've followed the instructions in the read me, and the app runs fine in Xcode. But no message is shown, no matter how many times i try to run it. I have edited the #defines, so the problem shouldn't be there. When APPIRATER_DEBUG is enabled, it also doesn't show anything. I've tried cleaning the project, but that didn't seem to work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在 AppDelegate.ma 中导入了 Appirater 现在应该打开弹出窗口以启动应用程序
import "AppDelegate.h"
import "Appirater.h"
@implementation AppDelegate
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions :(NSDictionary *)启动选项
{
[Appirater 应用程序已启动];
返回是;
}
You imported Appirater in AppDelegate.ma It should now open the pop-up to the launch of the app
import "AppDelegate.h"
import "Appirater.h"
@implementation AppDelegate
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[Appirater appLaunched];
return YES;
}