Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Tutorials > Tutorial Requests

Reply
 
LinkBack Thread Tools Display Modes
Old 02-20-2010, 07:18 PM   #1 (permalink)
Registered Member
 
Join Date: Jan 2010
Posts: 54
jcww33 is on a distinguished road
Default Adwhirl tutorial

Can anybody make a video or a more detailed excplenation on how to implement the adwhirl sdk? I'm confused on steps 6-7 on the provided instructions. Thanks in advance.
jcww33 is offline   Reply With Quote
Old 02-20-2010, 08:16 PM   #2 (permalink)
Registered Member
 
Join Date: Dec 2009
Posts: 271
rarindeed is on a distinguished road
Default

.app/ads offers the mediation layer AdWhirl offers and more. I've written a detailed guide to get you started if you're interested. Also, I can help you get started personally if that makes more sense.
__________________
@rarindeed


Burstly is the only open and free ad management platform for iPhone app developers.
rarindeed is offline   Reply With Quote
Old 08-07-2010, 02:59 AM   #3 (permalink)
Registered Member
 
Join Date: Jul 2010
Posts: 139
dudeofswim is on a distinguished road
Default

I am also confused on steps 6 + 7. Would love some help. If someone is however willing to implement the code into my app , I would be more than happy to use thier ad service.
dudeofswim is offline   Reply With Quote
Old 08-30-2010, 12:02 PM   #4 (permalink)
Registered Member
 
Join Date: Jun 2010
Posts: 8
etalmor is on a distinguished road
Default

Quote:
Originally Posted by dudeofswim View Post
I am also confused on steps 6 + 7. Would love some help. If someone is however willing to implement the code into my app , I would be more than happy to use thier ad service.
Quote:
Originally Posted by thomas02 View Post
Please anyone have any answers.
I'm a newbie with integrating ads too, but I was successful in integrating adwhirl after a while. The instructions for section 6 aren't clear at all. This is what you need to do:

1) Inside your ViewController.h:

#import "AdWhirlView.h"
#import "AdWhirlDelegateProtocol.h"

2)

@interface ViewController : UIViewController <AdWhirlDelegate>{
//your code

3) Inside your ViewController.m:

above the @implementation:

#define kSampleAppKey @"yourAdWhirlKey"

4) Inside the @implementation:

#pragma mark AdWhirlDelegate methods

- (NSString *)adWhirlApplicationKey{
return kSampleAppKey;
}

- (UIViewController *)viewControllerForPresentingModalView{
return self;
}


Now for section 7:

5) Inside your ViewController.m

- (void)viewDidLoad {

[super viewDidLoad];

AdWhirlView *awView = [AdWhirlView requestAdWhirlViewWithDelegate:self];

[self.view addSubview:awView];


// that's it!
etalmor is offline   Reply With Quote
Old 09-09-2010, 09:16 AM   #5 (permalink)
Registered Member
 
Join Date: Sep 2010
Posts: 1
Ptashman is on a distinguished road
Default "Incomplete implementation"

Hey etalmor, I tried doing what you said, and I rechecked it several times. It is now telling me I have an incomplete implementation of class viewcontroller and in a different error it says that "class 'viewcontroller' does not fully implement the 'adwhirldelegate' protocol." between those two errors is a list of about 60 warnings that say "method definition for 'x' not found" x being something different every time (eg. Adwhirlimpmetricurl, adwhirlcustomadurl, etc, etc). Have you dealt with this problem. I'm a newbie as I'm sure it shows. Any help is very much appreciated.


QUOTE=etalmor;239597]I'm a newbie with integrating ads too, but I was successful in integrating adwhirl after a while. The instructions for section 6 aren't clear at all. This is what you need to do:

1) Inside your ViewController.h:

#import "AdWhirlView.h"
#import "AdWhirlDelegateProtocol.h"

2)

@interface ViewController : UIViewController <AdWhirlDelegate>{
//your code

3) Inside your ViewController.m:

above the @implementation:

#define kSampleAppKey @"yourAdWhirlKey"

4) Inside the @implementation:

#pragma mark AdWhirlDelegate methods

- (NSString *)adWhirlApplicationKey{
return kSampleAppKey;
}

- (UIViewController *)viewControllerForPresentingModalView{
return self;
}


Now for section 7:

5) Inside your ViewController.m

- (void)viewDidLoad {

[super viewDidLoad];

AdWhirlView *awView = [AdWhirlView requestAdWhirlViewWithDelegate:self];

[self.view addSubview:awView];


// that's it![/quote]
Ptashman is offline   Reply With Quote
Old 10-16-2010, 04:23 AM   #6 (permalink)
Registered Member
 
Join Date: Jun 2010
Posts: 8
etalmor is on a distinguished road
Default

Quote:
Originally Posted by Ptashman View Post
Hey etalmor, I tried doing what you said, and I rechecked it several times. It is now telling me I have an incomplete implementation of class viewcontroller and in a different error it says that "class 'viewcontroller' does not fully implement the 'adwhirldelegate' protocol." between those two errors is a list of about 60 warnings that say "method definition for 'x' not found" x being something different every time (eg. Adwhirlimpmetricurl, adwhirlcustomadurl, etc, etc). Have you dealt with this problem. I'm a newbie as I'm sure it shows. Any help is very much appreciated.
Hi I'm sorry but nothing like this happened to me, I would make sure that the adwhirl sdk is included in the project, and recheck the steps for integrating it before steps 6 and 7. good luck
etalmor is offline   Reply With Quote
Old 10-05-2011, 09:21 AM   #7 (permalink)
Registered Member
 
Join Date: Apr 2011
Posts: 10
Maverick2805 is on a distinguished road
Default

@Ptashman THANKS A LOT FOR YOUR POST!

This helped me a lot and I was able to successfully integrate AdWhirl (TestAds from iAd are showing).

My initial problem was that I did not integrate all Frameworks needed by AdWhirl, but after going through the list it worked perfectly.

Thanks (eventhough it's an old post) again!!


Cheers Mav
Maverick2805 is offline   Reply With Quote
Old 01-08-2012, 11:31 PM   #8 (permalink)
Registered Member
 
Join Date: Jan 2012
Posts: 4
iDev0 is on a distinguished road
Default implement AdWhirl in app

i implement iAd and AdMob in my app. and it work perfectly in app
you can download the sample code of adWhirl from here

AdWhirl Tutorial

if you run app in simulator than its impression not count
you need to run app in real device

Last edited by iDev0; 03-02-2012 at 06:17 AM.
iDev0 is offline   Reply With Quote
Old 02-18-2012, 09:45 AM   #9 (permalink)
Registered Member
 
Join Date: Sep 2010
Posts: 1
estevez is on a distinguished road
Exclamation WARNING!

Quote:
Originally Posted by iDev0 View Post
Yes, I use adWhirl in my iphone app.
and it is live in apple store
i implement iAd and AdMob in my app. and it work perfectly in app
you can download the sample code of adWhirl from here
AdWhirl sample code

It 100% work
if you run app in simulator than its impression not count
you need to run app in real device
It really works, but be careful with AdWhirl_Pro it has a dangerous typo. In the sample file “AdWhirl_proViewController.m”, line 13:

#define kSamplaAppKey @”2e8d7eed0b1b102d96dc5b26eaf5c1″; // Enter your SDK key

should be:

#define kSampleAppKey @”2e8d7eed0b1b102d96dc5b26eaf5c1″; // Enter your SDK key

Note the ‘e’ on kSampl e AppKey

Be very careful as this error may prevent your sdk key to replace the one used in the example and your app may be published with that key. Also, in the AdWhirl group, into the Internal group there is a file that shouldn’t be there, but you can leave it and just comment out the line 23 (#define kSampleAppKey @”2e8d7eed0b1b102d96dc5b26eaf5c1″; )
estevez is offline   Reply With Quote
Old 03-02-2012, 06:33 AM   #10 (permalink)
Registered Member
 
Join Date: Jan 2012
Posts: 4
iDev0 is on a distinguished road
Wink Thanks

Quote:
Originally Posted by estevez View Post
It really works, but be careful with AdWhirl_Pro it has a dangerous typo. In the sample file “AdWhirl_proViewController.m”, line 13:

#define kSamplaAppKey @”2e8d7eed0b1b102d96dc5b26eaf5c1″; // Enter your SDK key

should be:

#define kSampleAppKey @”2e8d7eed0b1b102d96dc5b26eaf5c1″; // Enter your SDK key

Note the ‘e’ on kSampl e AppKey

Be very careful as this error may prevent your sdk key to replace the one used in the example and your app may be published with that key. Also, in the AdWhirl group, into the Internal group there is a file that shouldn’t be there, but you can leave it and just comment out the line 23 (#define kSampleAppKey @”2e8d7eed0b1b102d96dc5b26eaf5c1″; )
Thanks
iDev0 is offline   Reply With Quote
Reply

Bookmarks

Tags
ads, adwhirl

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Stats
Members: 175,696
Threads: 94,139
Posts: 402,961
Top Poster: BrianSlick (7,990)
Welcome to our newest member, jasper_muc
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 02:01 PM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0