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 […]
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 […]
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 […]
Last week you were introduced to the Collection View Control and its components. You got a bird’s eye view of the BevUp! application we will create. I also gave you a bird’s eye view of the application’s data model. Our Objectives Today you’ll create the BevUp! application. You will design the first view to look […]
Gone are the days of creating two storyboards files in your iOS project. A storyboard can have one or more scenes and each one represent the app’s user interface or view. So one storyboard is needed for creating the app’s user interfaces and they are automatically displayed on iPhone and iPad devices. The key to making that automation work, […]