使用 Apptentive 时无法识别的选择器:-[ATAppRatingFlow appDidLaunch:viewC


由于无法

识别的选择器,在应用API中调用以下方法崩溃。

ATAppRatingFlow *ratingFlow = [ATAppRatingFlow sharedRatingFlowWithAppID:kApptentiveAppID];
[ratingFlow appDidLaunch:YES viewController:self.navigationController];

这将产生以下错误日志:

*2013-10-03 10:32:08.089 YourApp[39841:a0b] -[ATAppRatingFlow appDidLaunch:viewController:]: unrecognized selector sent to instance 0xc5aee60*
*2013-10-03 10:32:08.144 YourApp[39841:a0b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[ATAppRatingFlow appDidLaunch:viewController:]: unrecognized selector sent to instance 0xc5aee60'*
**** First throw call stack:*
*(*
* 0 CoreFoundation 0x0257f5e4 __exceptionPreprocess + 180*
* 1 libobjc.A.dylib 0x022ee8b6 objc_exception_throw + 44*
* 2 CoreFoundation 0x0261c903 -[NSObject(NSObject) doesNotRecognizeSelector:] + 275*
* 3 CoreFoundation 0x0256f90b ___forwarding___ + 1019 

以前版本的 Apptentive 使用以下 3 种方法来显示评级流程:

- (void)appDidLaunch:(BOOL)canPromptForRating viewController:(UIViewController *)viewController;
- (void)appDidEnterForeground:(BOOL)canPromptForRating viewController:(UIViewController *)viewController;
- (void)userDidPerformSignificantEvent:(BOOL)canPromptForRating viewController:(UIViewController *)viewController;

在较新版本的应用程序中,它们已被单个方法取代:

- (void)showRatingFlowFromViewControllerIfConditionsAreMet:(UIViewController *)viewController;

这样称呼它:

[[ATAppRatingFlow sharedRatingFlow] showRatingFlowFromViewControllerIfConditionsAreMet:viewController];

仅当用户此时满足评分条件(在 Apptentive 网站上设置)时,showRatingFlowFromViewControllerIfConditionsAreMet 方法才会显示评分流。

  • 安装 X 天后
  • Y 使用次数
  • Z 重大事件

相关内容

  • 没有找到相关文章

最新更新