简体   繁体   中英

How to implement iADs into application in iPhone?

How can I implement iADs into application in iPhone? i downloaded more than 4 sample codes but no one shows even iADs block in application. how to show ADBannerView programmatically anyone provide step by step for showing iADs programmatically.

ADBannerView *adView = [[ADBannerView alloc] initWithFrame: CGRectMake(0, 366, 320, 50)];
adView. requiredContentSizeIdentifiers = [NSSet setWithObjects: ADBannerContentSizeIdentifierPortrait, ADBannerContentSizeIdentifierLandscape, nil];
adView.delegate = self; 
[self.view addSubview: adView];

Edit: Thanks go out to @LucasTizma.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM