Quantcast
Channel: iOS-Blog » Tutorials
Browsing latest articles
Browse All 18 View Live

Quick Tip: Scrolling animation – UIScrollView

So I wanted an animated UIScrollView which iterated around a collection of UIViews that had been programmatically added to my UIScrollView. Problem I ran into was starting the animation over after the...

View Article



Quick tip: Implementing UIAlertView in Swift

In Swift and iOS 8 SDK you can present an alert view as shown in the code below : 1234var alert = UIAlertController(title: “Alert Title", message: "Message", preferredStyle:...

View Article

Connect your Swift Application to Parse.com

Parse.com is an absolutely fantastic option for the individual Swift iOS developer who wants to have the full power of a server backend powering their app without all the difficulties of setting one...

View Article

Swift: Create user sign up based app with Parse.com using PFUser

So, you want to be able to let people sign up to your app right? and you’re using Parse.com? Awesome. They have thought of this and created a fantastic specialised user class: PFUser. This tutorial...

View Article

Swift: Create a login app with Parse.com PFUser & Keychain Locksmith

This tutorial optimising the specialised Parse.com class PFuser to verify login credentials and uses an awesome library called Locksmith Keychain that stores information in the iOS Keychain to remember...

View Article


Swift: How to send a POST Request to a PHP Script

This tutorial will show you how to send a POST request in Swift to a PHP script on your server. There are many fantastic advantages to connecting your Swift application to a PHP Web Service. It opens...

View Article

Swift NSTimer Tutorial – Lets create a counter application

In this Swift tutorial we are going to create a basic counter application that utilises the NSTimer class. This is a great introduction to using NSTimer with Swift. Jump to: What is NSTimer? Set up...

View Article

Swift: Tuples an introduction

A Tuple in Swift is a neat way to store multiple values in a single value. You will probably come across tuples in a return function or class. So a tuple is basically a way to represent a collection of...

View Article


Swift: Type Annotations

Type Annotations in Swift are a really useful way to make sure that the specified value matched that of the expected value. This is extremely useful when using functions and declaring your variables....

View Article


How to create an Objective-C Bridging header

So you want to use an Objective-C Library or SDK in your Swift application eh? Well do not fret. This quick tutorial will show You how you can create an Objective-C Bridging Header in your Swift...

View Article
Browsing latest articles
Browse All 18 View Live


Latest Images