/iOSWeatherApp

A basic weather app for iOS

Primary LanguageSwiftApache License 2.0Apache-2.0

Clima

This is a weather app I built by following a udemy course on iOS development. This is the 6th iOS app I have built but the first one worth going on github.

Learn to make iOS Apps with The App Brewery 📱

Installing

pod update
pod install
open Clima.xcworkspace

Finished App

Finished App

Fix for Cocoapods v1.0.1 and below

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['SWIFT_VERSION'] = '3.0'
      config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
    end
  end
end