评估器不工作

发布于 2024-12-07 14:55:19 字数 170 浏览 0 评论 0原文

我正在尝试在我的应用程序中实现 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愛上了 2024-12-14 14:55:19

您在 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;
    }

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文