Example how to use the Button in XCode for iPhones. Your first "Hello world" application.

In this tutorial you will see how to use Buttons (UIButton) and how to change text of the Label (UILabel) after pressing the button.
Back to top
Read more ...
Example how to use the Switch in XCode for iPhone, sample code included.

We'll show you how to use UISwitch component in iPhone SDK. We will have three instances of UISwitch controlling three different components, UILabel, another UISwitch and UITextField, it is quite simple.
Back to top
Read more ...
Example how to use slider in iPhone SDK / XCode.

In this tutorial you can learn how to use the UISlider. After finishing this tutorial you will be able to read a value from the slider and set a new value from text field (UITextField) after pressing the button (UIButton). All source codes and printable MS Word document are included.
Back to top
Read more ...
UINavigationBar tutorial with UITable, pushing detail view using didSelectRowAtIndexPath and all XCode example source files.

This tutorial will show you how to populate a table using UITableView, NSMutableArray and Navigation-Based application for iPhone and how to create detail view. Tutorial includes example code, sample project and pictures from Interface Builder.
Back to top
Read more ...
Threading tutorial using NSthread in iPhone SDK (Objective-C)

This tutorial will show you how to use the NSThread in iPhone SDK to avoid loosing of the interface response.
This is good if you need to run some repetitive task on the background of the application or for some task, which may take long time to process.
Full source codes are included in the example aplication. (NSThread, detachNewThreadSelector, performSelectorOnMainThread)
Back to top
Read more ...