Author Archives: idz

About idz

A professional software engineer dabbling in iOS app development.

Tutorial: How to Rename a Class using Refactor in Xcode 4 and Xcode 5

Update: Although this post was originally written about Xcode 4 the procedure is the same in Xcode 5 I’ve always found it annoying that the Apple templates for Navigation-based Projects called the root view controller class RootViewController. If you create … Continue reading

Posted in Tutorial | Tagged , , , , | 3 Comments

Tutorial: Using UITableView

This is a brief tutorial on how to use UITableView. Instead of populating the table with a list of hard-coded strings, I would like to show you how to do something (slightly) more useful: list all the fonts available on … Continue reading

Posted in Tutorial | Tagged , , | 2 Comments

Introduction to Properties in Objective-C

Properties in Objective-C allow you to provide a well-defined interface for other classes to manipulate (i.e. get or set) attributes of a class. They also insulate external classes from the implementation details of the attributes (this separation of function and … Continue reading

Posted in Objective-C | 2 Comments