1
我在iPhone應用程序中集成了AdMob。iPhone + AdMob +刪除廣告視圖
我在我的UIViewController添加廣告圖如下:
ProgrammaticAdViewController *temp = [[ProgrammaticAdViewController alloc] init];
temp = [[ProgrammaticAdViewController alloc] initWithNibName:nil bundle:nil];
[self.view addSubview:temp.view];
所以,我就能看到我的UIViewController頂部的廣告視圖。
現在我有兩個問題:
我不能夠利用上,我添加了廣告瀏覽我的UIViewController的某些按鈕。因此,對於臨時目的,我將廣告視圖:
[self.view insertSubView:temp.view atIndex:1];
我想,所以我使用去除廣告視圖之後的某個時間:
[temp.view removeFromSuperView];
但我的廣告的看法是不被刪除。
請幫幫我。
問候, PRATIK
temp.tag會不工作,因爲temp是ViewController類的實例,並且沒有標籤作爲其屬性。 – pratik
然後在.h文件中聲明它。 –
@Tom:對不起,我沒有得到你最後的評論... plz你可以詳細解釋一下 – pratik