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 [...]
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 [...]
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 [...]
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 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 [...]
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 [...]
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 [...]
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 [...]
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 [...]
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 [...]