How To Create a Geofence for your Mobile App — Swift

Zak DeBrine
SpotSense
Published in
3 min readMay 4, 2019

This guide is for adding geofences to your iOS app, using Swift with the SpotSense SDK. It is current as of May 4th, 2019.

What you’ll need

  1. Xcode (free)
  2. Apple developer account (free)
  3. Your own iOS app written in Swift (Or you can download a sample app here)
  4. SpotSense account (free)

1) Create an Apple Developer account

https://developer.apple.com > Account > Create account

2) Download the latest version of Xcode from iTunes

3) Download sample app from Github (If you don’t have your own mobile app)

4) SpotSense SDK setup

  • https://www.spotsense.io > Dashboard
  • Click sign in or create account
  • Under “Add an app” Choose iOS via Cocoapods
  • Name your mobile app > List the bundle ID you’re using for your mobile app
  • Install the SpotSense podfile (Cocoapods will generate a .xcworkspace file. Be sure to use this file when developing your application)
  • In your ViewController.swift, initialize SpotSense with your app's client id and secret.
  • Add delegates to ViewController and initialize
  • Add the SpotSense initialization code to viewDidLoad()
  • Add ruleDidTrigger method to ViewController
  • Add locationManager delegate to notify SpotSense of geofence events
  • Add didStartMonitoringFor method for debugging geofences (optional)

5) Create your geofence

  • On SpotSense dashboard, click geofence > Create my first geofence
  • Name your geofence
  • Draw geofence on map where you want to track enter and exit events
  • Type notification text in notification section
  • Click create

6) Set up your mobile app on your device

  • Plug your iPhone into your machine
  • In Xcode, select the dropdown in the top left corner next to your app name > Choose your device
  • Run the app (This should start running the application on your phone)

Go test the geofence!

There’s two ways you can test a geofence, by walking to the actual geofenced location, or testing it in the simulator. If you want to test it in the simulator, this video should give you everything you need.

  • When you trigger the geofence, you should see the notification pop up on the screen
  • Congrats — You did it!
  • No go out and create some awesome location based experiences for your users

Let me know if this worked for you (it does for me!) and if you have any feedback.

Want to track enter and exit events from your geofences on Mixpanel? Check out how

--

--