Category: Objc App Development

Split View Controller Basic Use

The Split View Controller is an iPad specific container view controller for managing two view controllers, a master in the left and a detail on the right. A prime example of the Split View Controller can be seen with the iPad Mail app which list messages and mailboxes in the master panel and displays the content of […]

The Collection View: Part 6 of 6

This is the final tutorial in the Collection View series and in it you’ll learn how to enable the app user to select multiple flashcard photos (Collection View Cell items), which the app highlights. Enable the app user to send the flashcard photos he selected to one or more friends. The first thing I want you to […]

The Collection View: Part 5 of 6

Today you’ll learn how to do the following: How to display section headers How to display collection view cells below section headers How to highlight the Collection View Cell the user tapped I’ve created an application we we’ll use to implement above requirements. So in order to follow along, you’ll have to download it by […]

The Collection View: Part 4 of 6

In this part of the tutorial you will learn how to implement the ability for the app user to search for a recipe by its name. Implement The Search Bar Delegate Methods Implementing the search function in the BevUp application is quite simple. All we have to do is implement three delegate methods of the UISearchBarDelegate […]

The Collection View: Part 3 of 6

Last week you created a iOS application, added a Search Bar and Collection View on the DrinkRecipesViewController scene. You entered code in the scene’s class files to display items in the Collection View Cells like this: Figure 1: The Drink Recipes View Controller screen in the iPad Simulator Our Objectives Today we have to implement […]