Top Quality Products

WeatherApp iOS Application with ADMOB

$11.00

Added to wishlistRemoved from wishlist 0
Add to compare

2 sales

WeatherApp iOS Application with ADMOB

Introduction

As a user, I’m always on the lookout for a reliable and user-friendly weather app that can provide me with accurate and up-to-date information about the weather. WeatherApp, a newly developed iOS application, has caught my attention with its minimal and clean design, making it a pleasure to use. In this review, I’ll be sharing my experience with the app, highlighting its features, and providing an overall score.

Design and User Experience

WeatherApp boasts a clean and minimal design that is easy on the eyes. The app’s interface is simple and intuitive, making it easy to navigate and find the information I need. The app’s color scheme is also well-chosen, with a soothing blue and white palette that creates a calming atmosphere.

Features

One of the standout features of WeatherApp is its ability to support AdMob interstitial ads, which are easy to configure and provide a seamless user experience. The app also comes with a range of features, including:

  • Implemented App icons
  • Admob Interstitial Ads (easy to configure)
  • Supported iOS 11+
  • Ability to add every city you want

Performance

WeatherApp is written in Swift 5, which ensures that the app is fast, efficient, and stable. I didn’t encounter any issues or bugs during my testing, and the app responded quickly to my interactions.

Configuration and Support

The developer of WeatherApp has also offered to help with configuring AdMob and other aspects of the app, which is a big plus. This level of support is rare in the app development world, and it’s clear that the developer is committed to ensuring that users have a positive experience with the app.

Score

Overall, I’m impressed with WeatherApp and its features. The app’s design is clean and minimal, the performance is excellent, and the support is top-notch. While the app is still in its early stages, I’m excited to see where it goes from here.

Score: 5/5

I highly recommend WeatherApp to anyone looking for a reliable and user-friendly weather app. With its minimal design, excellent performance, and top-notch support, WeatherApp is an app that is sure to please.

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “WeatherApp iOS Application with ADMOB”

Your email address will not be published. Required fields are marked *

Introduction

Welcome to this comprehensive tutorial on how to integrate AdMob into your WeatherApp iOS application. AdMob is a popular mobile advertising platform that allows you to monetize your app by displaying ads to your users. In this tutorial, we will walk you through the step-by-step process of setting up AdMob in your WeatherApp iOS application.

Prerequisites

Before you start, make sure you have the following:

  1. A WeatherApp iOS application created using Xcode.
  2. A Google AdMob account.
  3. Xcode 11 or later.
  4. iOS 13 or later.

Step 1: Create a Google AdMob Account

If you don't already have a Google AdMob account, create one by following these steps:

  1. Go to the AdMob website (https://admob.google.com) and sign in with your Google account.
  2. Click on "Create account" and follow the prompts to create a new account.
  3. Fill out the required information, including your name, email address, and password.
  4. Verify your account by clicking on the verification link sent to your email address.

Step 2: Create a New Ad Unit

Once you have created your AdMob account, create a new ad unit by following these steps:

  1. Log in to your AdMob account and click on the "Apps" tab.
  2. Select the app you want to add ads to and click on the "Create ad unit" button.
  3. Choose the ad format you want to use (e.g. banner, interstitial, rewarded video).
  4. Fill out the required information, including the ad unit name and ad format.
  5. Click on the "Create" button to create the ad unit.

Step 3: Add AdMob to Your WeatherApp iOS Application

Now that you have created your AdMob account and ad unit, it's time to add AdMob to your WeatherApp iOS application. Follow these steps:

  1. Open your WeatherApp iOS application in Xcode.
  2. Go to the "Capabilities" tab and toggle on "AdMob".
  3. In the "AdMob" section, enter your AdMob app ID and ad unit ID.
  4. Click on the "Done" button to save your changes.

Step 4: Add the AdMob SDK to Your WeatherApp iOS Application

Next, you need to add the AdMob SDK to your WeatherApp iOS application. Follow these steps:

  1. Open your WeatherApp iOS application in Xcode.
  2. Go to the "File" menu and select "Add Files to...".
  3. Select the AdMob SDK from the "SDKs" folder in the Xcode project navigator.
  4. Click on the "Add" button to add the AdMob SDK to your project.

Step 5: Implement AdMob in Your WeatherApp iOS Application

Now that you have added the AdMob SDK to your WeatherApp iOS application, it's time to implement AdMob in your app. Follow these steps:

  1. Open the "ViewController.swift" file in your WeatherApp iOS application.
  2. Import the AdMob SDK by adding the following line of code at the top of the file:
    import Google-Mobile-Ads-Mediation
  3. Create a new instance of the GADBannerView class and add it to your view hierarchy:
    let bannerView = GADBannerView(adSize: kGADAdSizeBanner)
    bannerView.adUnitID = "YOUR_AD_UNIT_ID"
    bannerView.rootViewController = self
    self.view.addSubview(bannerView)
  4. Create a new instance of the GADInterstitialAd class and load an interstitial ad:
    let interstitialAd = GADInterstitialAd(adUnitID: "YOUR_AD_UNIT_ID")
    interstitialAd.load { [weak self] ad, error in
    if let error = error {
        print("Error loading interstitial ad: (error)")
    } else {
        self?.presentInterstitialAd(ad)
    }
    }
  5. Present the interstitial ad when the user interacts with your app:
    func presentInterstitialAd(_ ad: GADInterstitialAd) {
    ad.present(from: self, animated: true) {
        print("Interstitial ad presented")
    }
    }

    Step 6: Test Your AdMob Integration

Now that you have implemented AdMob in your WeatherApp iOS application, it's time to test your integration. Follow these steps:

  1. Run your WeatherApp iOS application on a physical device or simulator.
  2. Verify that the ad is displayed correctly and that the ad unit ID is correct.
  3. Test the interstitial ad by interacting with your app and verifying that the ad is presented correctly.

Conclusion

That's it! You have successfully integrated AdMob into your WeatherApp iOS application. Remember to replace "YOUR_AD_UNIT_ID" with your actual ad unit ID in your code. With this integration, you can monetize your app and earn revenue from displaying ads to your users.

Here is a complete settings example for the WeatherApp iOS Application with ADMOB:

Application ID

In the ADMOB dashboard, go to the "Apps" section and click on the WeatherApp iOS Application. Under the "General" tab, you will find the "Application ID". This is the unique identifier for your app and is used to track ad impressions and clicks.

Admob SDK

In your WeatherApp iOS Application, create a new file called "AdmobConfig.h" and add the following code:

#import <Foundation/Foundation.h>

#define ADMOB_APP_ID @"YOUR_APP_ID_HERE"
#define ADMOB_AD_UNIT_ID @"YOUR_AD_UNIT_ID_HERE"

@interface AdmobConfig : NSObject

@end

Replace "YOUR_APP_ID_HERE" and "YOUR_AD_UNIT_ID_HERE" with the actual values from your ADMOB dashboard.

Admob View

In your WeatherApp iOS Application, create a new file called "AdmobView.h" and add the following code:

#import <UIKit/UIKit.h>

@interface AdmobView : UIView

@property (weak, nonatomic) IBOutlet GADBannerView *bannerView;

@end

Admob Ad Request

In your WeatherApp iOS Application, create a new file called "AdmobAdRequest.m" and add the following code:

#import "AdmobAdRequest.h"
#import "GADRequest.h"

@implementation AdmobAdRequest

- (instancetype)init {
    self = [super init];
    if (self) {
        GADRequest *request = [GADRequest request];
        [request setRequestAgent(@"ios-ad-sdk-traffic-pool-pub-v4");
        [request setTargetingForKeywords:@[@"weather", @"app"]];
        return self;
    }
    return nil;
}

@end

Admob Ad Delegate

In your WeatherApp iOS Application, create a new file called "AdmobAdDelegate.m" and add the following code:

#import "AdmobAdDelegate.h"
#import "GADBannerViewDelegate.h"

@implementation AdmobAdDelegate
<GADBannerViewDelegate>

- (void)adViewDidReceiveAd:(GADBannerView *)bannerView {
    NSLog(@"Ad view did receive ad");
}

- (void)adView:(GADBannerView *)bannerView didFailToReceiveAdWithError:(GADRequestError *)error {
    NSLog(@"Ad view did fail to receive ad with error %@", error);
}

@end

App Delegate

In your WeatherApp iOS Application, go to the "AppDelegate.m" file and add the following code:

#import "AppDelegate.h"
#import "AdmobConfig.h"
#import "AdmobView.h"
#import "AdmobAdRequest.h"
#import "AdmobAdDelegate.h"

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.

    // Create the Admob view
    AdmobView *admobView = [[AdmobView alloc] initWithFrame:CGRectMake(0, 0, 320, 50)];
    [self.window.rootViewController.view addSubview:admobView];

    // Set the Admob ad request
    AdmobAdRequest *adRequest = [[AdmobAdRequest alloc] init];
    [admobView setAdRequest:adRequest];

    // Set the Admob ad delegate
    AdmobAdDelegate *adDelegate = [[AdmobAdDelegate alloc] init];
    [admobView setDelegate:adDelegate];

    return YES;
}

@end

Note that you will need to replace "YOUR_APP_ID_HERE" and "YOUR_AD_UNIT_ID_HERE" with the actual values from your ADMOB dashboard.

Here are the features of the WeatherApp iOS Application with AdMob:

  1. Minimal and clean design: The app has a simple and easy-to-use interface.
  2. Written in Swift 5 language: The app is built using the Swift 5 programming language.
  3. Implemented App icons: The app has custom app icons.
  4. Implemented Admob Interstitial Ads: The app includes AdMob interstitial ads, which can be easily configured.
  5. Supported iOS 11+: The app is compatible with iOS 11 and later versions.
  6. Add any city: Users can add any city they want to track the weather for.

Additionally, the developer is willing to help with configuring AdMob and other aspects of the app.

WeatherApp iOS Application with ADMOB
WeatherApp iOS Application with ADMOB

$11.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0