We are going to make an app that stores and displays races of birds, cats and dogs. We are going to use UITableViewto show the list of species and races, NSUserDefaults for data persistence and UIWebView to get more information about each race on Wikipedia. Step 1: Create a new project Open Xcode and create a new iOS project using…
Monthly Archives: November 2014

Introduction To SceneKit – Part 2
In this tutorial we’ll be looking at the various types of primitives you can use with SceneKit. We’ll look at how we can position objects in 3D space and ways of animating the positions of objects via actions. Here’s a SceneKit starter project with an empty scene to help you follow along. Geometries in SceneKit are instances of the SCNGeometry class. Geometries provide the…
How to remove storyboards from your project
tl;dr I don’t like using storyboards in bigger projects (more than 4-5 screens). When I start a new project from scratch I ussualy do the steps from this tutorial. I won’t talk about the issues that storyboards have, but I will recommend this post for anyone interested in this topic. In this tutorial we are going to remove the storyboard…