Skip to content

A weather app using MVC design pattern, using CocoaPods, Delegates, Protocols and Segues. This was an exercise during the Swift bootcamp course with Angela Yu.

Notifications You must be signed in to change notification settings

DThalikar/Weather-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Clima

Learn to make iOS Apps | Project Stub | (Swift 3.0/Xcode 8) - Clima App

Download the starter project files as .zip and extract to your desktop.

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

Fix for App Transport Security Override

	<key>NSAppTransportSecurity</key>
	<dict>
		<key>NSExceptionDomains</key>
		<dict>
			<key>openweathermap.org</key>
			<dict>
				<key>NSIncludesSubdomains</key>
				<true/>
				<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
				<true/>
			</dict>
		</dict>
	</dict>

Copyright 2016 London App Brewery

About

A weather app using MVC design pattern, using CocoaPods, Delegates, Protocols and Segues. This was an exercise during the Swift bootcamp course with Angela Yu.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published