Sponsored Links

Archives

iPhone SDK Tutorial for Creating a Splash Screen

iPhone Tutorial for Creating a Splash Screen
Introduction:

Some people asked me about creating a splash screen in iPhone. So today I am going to write a simple tutorial on creating splash view for your application. I will write another post on good looking splash page as well. Its really a small thing but have a really good [...]

iPhone SDK Simple Calculator Tutorial

Simple Calculator Tutorial

You can already build a Hello World application (I hope so). Now, let’s try to build something more interesting with more user functionality.

Start Xcode, create new project Window-Based Application, name it Calculator, create a View Controller, name it Calc, create a view name it Calculator.

You have to create one object, few variables and methods in [...]

iPhone SDK Tutorial: How to create gradient UITableView backgrounds

This demonstration provides an example of how to spice up your UITableView rows for a more polished look. In addition to seeing how easy it can be to design a nice graphic for your iPhone app, you get a start to finish implementation.

This video was embedded using the YouTuber plugin by Roy Tanck. Adobe Flash Player [...]

iPhone UITableView with UINavigationBar tutorial revisited

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.

First thing we need to do is to create a new project, Navigation-based Application and call it for example “MyUITableView”.

Open RootViewController.h and [...]

How to create a custom cells in a UITableView

How the user interface was constructed for the Bikini.com application, the UI in question is shown below:

Creating a Custom Table

It’s quite simple to pull this together, it’s nothing more than a UITableView that is transparent so the background shows through. Each cell is a UITableViewCell which allows for customization of the cell.

Before we walk through [...]

iPhone Debugging – Automating Your Tests With A UIRecorder Instrument

From icodeblog.com

If you have ever experienced a bug in your application that took many steps to reproduce, then this tutorial is for you.  By nature, testing and debugging are very tedious processes.  This is especially the case for the iPhone.

Say you have an app that drills down 5-levels deep to some other view.  Now let’s say [...]

iPhone SDK: How to make UILabel / UITableViewCell to have a dynamic height

From Max Horvath Blog:

I recently found out, that even though according to the documentation sizeToFit on a UILabel will take into account the numberOfLines property, it simply doesn’t.

You have seen variable heights of UITableViewCell in iPhone applications like App Store, Address Book, SMS and so on. These applications have a UITableView as main part, but [...]

iPhone SDK Tutorial: Play a short sound in iphone sdk

From matt drake blog: play a short sound in iphone sdk

Here is the a summary of the steps I took in the video:

Create a View Based iPhone Application

First, create a view based iPhone application in XCode and add a button to your view that will play the sound. If you need a refresher on how to [...]

iPhone SDK Tutorial: Building an Earthquake Monitor for iPhone using MapKit

The iPhone has plenty of neat features to use, one of the more recent features is using the built in Google Maps support. The specific SDK library we are looking at is MapKit.

The application we are looking at building today is going to display the last 300 earthquakes from around the world – data pulled from [...]

iPhone SDK Tutorial: Using iPhone SDK MapKit Framework

Recently I was working on an application in which the map was required to be shown with in the application itself. I tried looking for some online resources that could be of some help but did not find any. I was not able to find any good tutorial that explains how can an address be shown [...]