Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

Need somebody to finish my App for me

Cool-HCool-H Posts: 18Registered Users
Hi Everyone,

I have made a noughts and crosses App, and I am struggling with finishing it. Basically I will pay somebody to...

1. Add a CPU player 2
2. And add a iAd banner at the bottom.

So what are your prices and timing? If interested post below or PM me please :)

Thanks!
Post edited by Cool-H on

Replies

  • Cool-HCool-H Posts: 18Registered Users
    Hi Everyone,

    I have made a tic tac toe App and am having trouble putting an iAd banner at the bottom. For $15 could somebody put an iAD banner into the App for me? I will send you the source code, you put banner in and send me back.

    Regards,
  • Cool-HCool-H Posts: 18Registered Users
    Mods this is in the wrong section, somebody please delete it for me as I can't figure out how.
  • ryantcbryantcb Posts: 328Registered Users
    First add the iAd framework to your app then,
    in the Header file add the import statement
    #import <iAd/iAd.h>

    Then add the "" protocol reference.
    Then add the property for the adView
    @property (nonatomic)IBOutlet ADBannerView *adView;

    Then in the .M file add these 2 delegate methods and the synthesize for the property and a Boolean
    @synthesize adView=_adView;
    BOOL bannerIsVisible=NO;

    - (void)bannerViewDidLoadAd:(ADBannerView *)banner;
    - (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error;


    Those 2 methods allow to a show the ads and also hide the add view if an add failed to load.

    - (void)bannerViewDidLoadAd:(ADBannerView *)banner
    {
    if (!bannerIsVisible)
    {
    [UIView beginAnimations:@\"AdBannerOn\" context:NULL];
    // banner is invisible now and moved out of the screen on 50 px
    banner.frame = CGRectOffset(banner.frame, 0, -50);
    [UIView commitAnimations];
    bannerIsVisible = YES;
    }
    }

    - (void)bannerView:(ADBannerView *)banner didFailToReceiveAdWithError:(NSError *)error
    {
    [_adView setHidden:YES];
    if (bannerIsVisible)
    {
    [UIView beginAnimations:@\"AdBannerOff\" context:NULL];
    // banner is visible and we move it out of the screen, due to connection issue
    banner.frame = CGRectOffset(banner.frame, 0, 50);
    [UIView commitAnimations];
    bannerIsVisible = NO;

    }
    }


    That should get those ads up for ya dont forget to turn them on and accept any agreements needed in itunesconnect
  • rocotilosrocotilos Posts: 3,216iPhone Dev SDK Supporter, Registered Users
    Yup ok, send it to me. [email]emir.fithri[at]gmail[dot]com[/email]

    Edit, uh... well, someone already posted the code.
    if u still need *someone* to do it for u for $15, just send it to me.
  • baja_yubaja_yu Posts: 6,166Super Moderators, Registered Users
    1. There is a separate section for job postings, if you want to pay someone to do it for you.
    2. You already created a thread for this, and it got moved to the Help Wanted section where it should be.

    So please post threads in the appropriate section, and don't post duplicate threads for the same thing.
Sign In or Register to comment.