2014-05-17 1 views
0

Google AdMob을 앱에 구현하는 가장 좋은 방법을 배우려고합니다. 한 번 해봤지만 올바른 방법인지 확신 할 수 없었습니다. 이 코드 줄에서 Google AdMob의 코드를 어디에 넣어야하는지 알고 싶습니다. 나는 때문에 광고 규칙 내 사이트를 제거 Google AdMob에서 UIWebview 앱으로 구현

// [email protected]'s Creations 
// 
// Created by [email protected] on 5/16/14. 
// Copyright (c) 2014 [email protected] All rights reserved. 
// 

#import "ViewController.h" 

@interface ViewController() 

@end 

@implementation ViewController 

- (void)viewDidLoad { 
    [super viewDidLoad]; 
    NSString *fullURL = @"http://sample.com"; 
    NSURL *url = [NSURL URLWithString:fullURL]; 
    NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; 
    [_viewWeb loadRequest:requestObj]; 
} 

- (void)didReceiveMemoryWarning 
{ 
    [super didReceiveMemoryWarning]; 
    // Dispose of any resources that can be recreated. 
} 

@end 

그냥 어떤 사람들은 그래서 그들은 혼란 sample.com을하지 않는 알려하는 내 사이트되지 않은 : 여기

내가 함께 일하고 것입니다. 또한 Tab Bar WebView 앱을 만들고 있습니다.

답변

관련 문제