I really wanted a simple way to add Google Analytics to my iOS (swift) app without subclassing the way they recommend. Swift makes this easy with Extensions. All you have to do add GA to your swift app (I highly recommend using cocoapods) and add this extension to your code base. Extensions are essentially a […]
Tag Archives | ios

Creating a pull to refresh animation like the popular Vine iOS app
I liked some of the details in Twitter’s Vine iOS app so I set out to make some of them. I thought the pull to refresh animation was pretty cool so I started with that. You can view the code on my github page. This is still a rough proof of concept version. https://github.com/lostincode/UIVinePullToRefresh

Creating a log in view controller for your app in iOS5 with a PHP backend (1/2)
In this two part tutorial we will cover creating a simple iOS5 app using storyboards that enables users to log in to your app by calling a PHP page to authenticate. We’ll also discuss techniques used to keep log in state using NSUserDefaults and NSNotificationCenter to notify other view controllers about our state. The goal […]