Categories
ios swift

User Signup and Login with Firebase for IOS

With Parse being killed off by facebook I wanted to give Firebase a shot. Here is a simple Signup and Login example using Swift in iOS. First, you want to go ahead and create an account. They offer a free development account, this should be enough to get you going. This article is a big […]

Categories
ios swift

User Signup with Parse for IOS

I have used Parse for several projects and It’s reasonably priced. This simple example is about using the PFUser object to sign up a new user to your application. I will assume you have the Parse IOS Swift SDK installed in your new Xcode project. 1. Make sure you have your provided API Keys setup in […]

Categories
ios swift

Using SQLite.swift To Save Data

Simple example using SQLite.swift. Follow the link to their git repository for more information and further documentation. I went this route for a current project, mainly to use sqlite. I would normally opt for Realm.io since it now has good swift support. import SQLite // Get document directory path from your phone let path = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, […]