我正在尝试将 RZLTS 推送通知服务集成到 Objective-c 游戏应用程序中。
虽然我已按照 RZLTS documentation 提供的确切步骤进行操作当我点击默认收件箱按钮时应用程序崩溃。
这里有我的 Xcode 崩溃日志:
由于未捕获的异常“NSInvalidArgumentException”而终止应用,原因:'-[RZLTSInboxView setWebViewControllerBluredBGImage:webViewController:]:无法识别的选择器发送到实例 0x1701f8900'
我已遵循文档的每一步。
这是我在 menuscene.m 中设置收件箱按钮的代码:
- (void)setButtonInbox {
CGPoint inboxPosition = CGPointMake(POSITION_BUTTON_SOUND_WIDTH_MENUSCENE - 15,
self.frame.size.height - SIZE_BUTTON_MORE_MENUSCENE * 2 - 10);
RZLTSInboxView *inboxView = [[RZLTSInboxView alloc] initWithOrigin:inboxPosition
controller:[UIApplication sharedApplication].keyWindow.rootViewController
andType:InboxTypeICONWhite];
[self.view addSubview:inboxView];
}
这是我设置收件箱 GameViewController.m、ViewDidLoad 的代码:
- (void)viewDidLoad {
[super viewDidLoad];
[RZLTS startInbox:self
appID:RZLTS_APP_ID
developerSubID1""
developerSubID2""
developerSubID3""
firstName"first"
lastName"last"
email"[email protected]"
gender:BOTH
age:12];
堆栈跟踪:
Best Answer-推荐答案 strong>
Stefan,感谢您提出这个问题。该团队已经部署了解决该问题的更新。
更新的 SDK 现已在以下位置提供:http://rzlts.com/sdk/RZLTS_iOS_v2.zip
山姆(来自 RZLTS)
关于ios - 当我使用 RZLTS 推送通知服务点击收件箱图标时发生崩溃,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/29918536/
|