Create the Project and Design the Interface First, create a new Xcode project using the Single View Template. Let’s name the project as “MyLocationDemo” and set the project with the following parameters: MyLocationDemo Xcode Project Once you’ve succe…
http://www.appcoda.com/how-to-add-splash-screen-in-your-ios-app/ What’s Splash Screen? For those who are new to programming and haven’t heard of the term “Splash Screen”, let me first give a brief explanation about it. Splash screen is commonly found…
http://www.raywenderlich.com/10518/how-to-use-uiscrollview-to-scroll-and-zoom-content Getting Started Fire up Xcode and create a new project with the iOS\Application\Single View Application template. Enter ScrollViews for the product name, enter the…
The iPhone Core Data Example Application The application developed in this chapter will take the form of the same contact database application used in previous chapters, the objective being to allow the user to enter name, address and phone number in…
How To Delete a Row from UITableView I hope you have a better understanding about Model-View-Controller. Now let’s move onto the coding part and see how we can delete a row from UITableView. To make thing simple, I’ll use the plain version of Simple…
Assigning View Controller Class In the first tutorial, we simply create a view controller that serves as the detail view of recipe in the Storyboard editor. The view controller is assigned with the UIViewController class by default. Default View Cont…
http://www.appcoda.com/use-storyboards-to-build-navigation-controller-and-table-view/ Creating Navigation Controller in Storyboards Now let’s get our hands dirty and create our own Storyboards. In this tutorial, we’ll build a simple app that makes us…
Creating the Xcode Project With a basic idea about what we’ll build, let’s move on. You can create the Xcode project from scratch and design the user interface similar to below: Storyboard of the Demo App However, to save your time from setting up th…
In this tutorial, we will build a simple app to display a collection of recipe photos in grid layout. Here are what you’re going to learn: Introduction to UICollectionView How to Use UICollectionView to build a simple Grid-based layout Customizing th…
From : http://useyourloaf.com/blog/2010/10/16/parsing-an-rss-feed-using-nsxmlparser.html Structure of an RSS feed Before we get too much into the detail it is worth taking a second to look at the structure of an RSS feed. A typical feed, with the mos…