iOS Programming Recipe 1: Controlling Actions With Buttons
This Recipe is going to cover the UIButton and a few ways that we can work with it. Assumptions You Are Familiar with XCode, if not go familiarize yourself Uses There are a few things we can do with...
View ArticleiOS Programming Recipe 6: Creating a custom UIView using a Nib
Creating a custom UIView using a Nib Assumptions You are familiar with creating UIView subclasses, and instantiating UIView’s both from a Nib file or in code You are familiar with Nib files Background...
View ArticleiOS Programming Recipe 8: Using UIAppearance For A Custom Look
Everyone wants to make their app look unique! Well the UIAppearance protocol can help you! In iOS 5.0 Apple introduced the UIAppearance proxy API which allows you the developer to customize many of...
View ArticleiOS Programming Recipe 10: Adding A Shadow To UIView
Assumptions You have enough familiarity with UIKit and Xcode to create projects and UIViews. If not, consider starting with Recipe 1 and reviewing Familiarizing Yourself With Xcode Shadows! Even the...
View ArticleiOS Programming Recipe 11: Using The UITableView Part II
In Part I of this recipe we left off with a UITableView that Displayed some creatures which were grouped by type. In this Recipe we’ll be extending the functionality a bit and emplement a delegate in...
View ArticleiOS Programming Recipe 15: Building A Weather Application
This recipe will cover building a basic weather application for the iPhone from start to finish (no graphics needed, all code). Initially, this application will be very basic, but many...
View ArticleiOS Programming Recipe 18: Unit Testing With GHUnit & CocoaPods
This Recipe will cover using GHUnit to unit test the Weather Application we developed in Recipe 15: Building A Weather Application. GHUnit is an open source unit testing framework for Mac and iOS that...
View ArticleiOS Programming Recipe 20: Using CAGradientLayer In A Custom View
This recipe will demonstrate how to use CAGradientLayer to add gradients to a custom UIView. Assumptions You should have basic knowledge of UIView and Core Animation, specifically CALayer. Basic...
View Article