Tapjoy SDK コードをアプリに追加しています。アプリを実行すると、
次のエラー コードが表示されます。
property 'showFeaturedBtn' not found on object of type 'UIViewController *'
私が呼んでいる私のコード:
// Show the custom Tapjoy full screen featured app ad view.
if (featuredApp)
{
[TapjoyConnect showFeaturedAppFullScreenAdWithViewController:mainCtrl_];
[mainCtrl_.showFeaturedBtn setEnabled:YES];
[mainCtrl_.showFeaturedBtn setAlpha:1.0f];
}
}
それが言うところ:
[mainCtrl_.showFeaturedBtn setEnabled:YES];
[mainCtrl_.showFeaturedBtn setAlpha:1.0f];
次の 2 つのエラーが表示されます。
property 'showFeaturedBtn' not found on object of type 'UIViewController *'
解決策はありますか?