A document-based application is an application that let the user open document files, allow the user to edit, track document changes, save document... In this post, I'll show you how to create a si...
Prior to iOS 9 when using Auto Layout it requires the creation of a lot of
constraints, even when using relative simple user interfaces. In iOS 9,
Apple introduces the Stack View, which will automatically create Auto
Layout constraints for each subview that's added to it. In this tutorial we
will create a vertical Stack View containing three subviews. This tutorial
is made in Xcode 7 and for iOS 9.
In this tutorial, we’ll look at how to setup a Twitter & Facebook Login and Signup view so you can get users signed up with minimal effort. The article will walk you through how to get all the configuration setup using Parse’s default Login and Signup views.
One of my very first app in Swift is a painting app (I removed it from the App Store). I write it by Swift with just UIKit. It's a sweet memory. I learned how to write a simple drawing app from thi...
In this tutorial, you'll learn how to customize your Parse Login and Sign Up views and add some animations so your app would seem unique and professional.
Reposted with correct links
In your Xcodes navigation area, right click paws project and select New File… in iOS->Source, select Objective-C file and hit next. Name your file any name you want and click next. Dialog box will pop up asking if you would like to configure an Objective-C bridging header, click Create Bridging Header.
http://shaideru.com/?p=164
Comparing dates in Swift can easily be extended by some code. Add this code to your project and comparing dates is easier than ever extension NSDate { func isGreaterThanDate(dateToCompare : NSDate)...
In this tutorial series we will learn how to build our own Uber app in Swift for iOS9. We will be learning about CoreLocation , MapKit and CustomViews.
Prior to iOS 9 when the user needs to connect to a web page the URL is
handed off to safari. forcing the user to exit out of your application. In
iOS 9 the Safari View Controller can be used to provide a full web
experience inside of your application. In this tutorial we will display a
webpage inside a Safari View Controller. This tutorial is made in Xcode 7
for iOS 9.