1万ダウンロード達成しました。
公開から1年かかりました。2012年4月22日〜バージョンアップを5回行い、2013年4月3日に1万ダウンロードです。
お祝いありがとうございます!
18.2: Apps that contain user generated content that is frequently pornographic (ex "Chat Roulette" apps) will be rejectedNakamap SDKを利用して、チャットを入れているのが、抵触したみたいです。
[self performSelector:@selector(startAd) withObject:self];を追加
-(void) startAd
{
KKAppDelegate* appDelegate = (KKAppDelegate*)[UIApplication sharedApplication].delegate;
bannerView_ = [[GADBannerView alloc]
initWithFrame:CGRectMake(0.0,
appDelegate.rootViewController.view.frame.size.height -
GAD_SIZE_320x50.height,
GAD_SIZE_320x50.width,
GAD_SIZE_320x50.height)];
// 広告の「ユニット ID」を指定する。これは AdMob パブリッシャー ID です。
bannerView_.adUnitID = MY_BANNER_UNIT_ID;
// ユーザーに広告を表示した場所に後で復元する UIViewController をランタイムに知らせて
// ビュー階層に追加する。
bannerView_.rootViewController = appDelegate.rootViewController;
[appDelegate.rootViewController.view addSubview:bannerView_];
// 一般的なリクエストを行って広告を読み込む。
[bannerView_ loadRequest:[GADRequest request]];
}
#ifndef KK_ARC_ENABLED
-(void)dealloc {
[bannerView_ release];
[super dealloc];
}
#endif