Skip to content
Alexander List edited this page Jun 10, 2015 · 10 revisions

Overview

A framework is bundle of code letting you add functionality to your app. Apple's frameworks let you access features like maps and the user's location. Other developers' frameworks like Parse let you easily syncronize data to the cloud.

This page covers the basics of adding Apple's iOS frameworks to your project. By the end of it you will understand how expose frameworks' methods and classes in you project.

Adding Frameworks to Project

In Brief

Adding Framework gif

Click on your project, select your app target, press general, then add the framework you need. For example, MapKit.framework

In Depth

Click on your project, select your app target, press Build Phases. Here are the steps the compilier takes to build your app.

In "Link Binary With Libraries," pressing the plus button allows you to add a framework.

Note: If you forget to link a library, your app will often compile correctly, but crash at runtime.

Exposing Framework to Swift file

import

At the top of every swift file you need to access the framework's methods and classes, you'll need to import the framework. For example to allow access to MKMapView in your MapViewController, import MapKit.

import UIKit
import MapKit

class MapViewController: UIViewController{
    var mapView: MKMapView!

Further Reading

Clone this wiki locally