Today we will look at adding in app purchases in a swift app. This can also be viewed on youtube here. Before we start if you haven't already I highly...
Read More
Our XCode and Swift tutorial’s can be found at the Seemu Apps Youtube channel:
https://www.youtube.com/channel/UC4XsK3cCGjfQ-bL6vKUhbjQ/videos
More tutorial’s can be found below. If you are looking for a specific one use the site search to see if we have one on it. If we don’t contact us and we will see if we can make one for you!
In this tutorial we will look at adding game centre in swift. This will allow you to keep a track of player scores & make the game a challenge to...
Read More
Reading & writing to a text file in Swift is simple. We use the documents directory to store our text files and read from them. The code below does this....
Read More
To start create a blank XCode project as a single view application. Once done go to the Main.Storyboard so we can add the collection view controller. From the object library...
Read More
In this Swift quiz app tutorial we will look at making a iOS quiz. It might sound complicated and scary at first, but it's actually quite simple. Lets start off...
Read More
In this post we will look at adding a shared iAd banner using the App Delegate. The reason for adding a shared iAd banner is simple - as you move...
Read More
Converting a NSDate to a String and back again is easy with a few lines of code. NSDate to String let date = NSDate() // Get Todays Date let dateFormatter...
Read More
Playing a sound in XCode is easy with not much code. This tutorial will take you through the steps to play a sound. The demo sound we will be using...
Read More
In this post we will look at implementing a basic UITableView in swift. This tutorial is also on youtube at: https://www.youtube.com/watch?v=LnSwoLJ5qCg First of all we create a blank single view...
Read More
MVC - sometimes also known as "Massive View Controller" is an architectural pattern used to implement user interfaces in apps. This tutorial will cover what MVC is, how it is...
Read More