Sponsored Links

This is an quick iphone sdk tourtial on how to change your app name on the springboard. if you like this video please subscribe

daniel75o asked:




Arcade Platform

Post to Twitter

iPhone SDK Tutorial: Switching Views

MacIsTheGeek asked:




Earn Money Off your websites

Post to Twitter

Hey guys, in this tutorial I am going to show you how to play a sound inside of the app with a touch of a button. Go check out my newest app in Cydia called Best of AFV! Please Comment, Rate, and Subscribe! Follow Me on Twitter: twitter.com Need an invite to Lockerz?? Go here: lockerzinvitesme.tk

rybread421 asked:




Ournetbuds.info

Post to Twitter

iPhone SDK – hoe te om iPhone App in Landschap te lanceren

daniel75o asked:


Om een iphone App in Landschap zo te lanceren. Het zal u ook tonen hoe te om de statusbar te verbergen. Video Verzoeken: dan@theappleguru.ca

Fun Blog Posting

Post to Twitter

Source Code: davidporterapps.com Follow me on Twitter: twitter.com

iPhonesandMacs asked:




Local Chat for Local People

Post to Twitter

How to use the UIProgressHUD – iPhone SDK Tutorial

Post to Twitter

iPhone SDK Tutorial: Drawing a Dynamic Pie Chart, part 2 of 2

myiphoneadventure asked:


iPhone SDK Tutorial: Drawing a Dynamic Pie Chart, part 2 of 2 This is part 2 of a 2 part basic xcode iPhone SDK tutorial in which I demonstrate the use of the quartz2d api to draw a pie chart which is dynamically drawn based on the weight of two sliders’ values.

Free Web Proxy

Post to Twitter

iPhone SDK: Info Button switching Views

antman872 asked:


Please comment below if you want a iPhone SDK Tutorial Made. I am going to to make 3 requests and upload them today. InfoButton Project: www.megaupload.com for the fastest reply Email me: antman3579@aol.com

Ournetbuds.info

Post to Twitter

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 impact on your users.

So lets use this image as your splash screen (This is Skype application splash screen)

iPhone splash screen

Step 1:Create a new Xcode project and name it Splash. Open the SplashViewController.xib file and change the background colour to white. Run the application and you will see a black screen appear before it shows you white screen.

Step 2:Drag the above image in to your resources file. Rename the file to Default.png. Run your application, you will see that this image will be a splash screen for your project (Its so easy !). So the concept is that sdk provide you a way to display user something before your application loads fully into memory. So default.png file basically shows user that something is coming and give iPhone time to load resources required for the application into memory. You can add any image on your application and name it Default.png and it will become your starting (splash/default) screen.

Now you want that your splash screen will be displayed around 2-3 seconds before it display the main screen to user or you want to load something from server. So to do that, I am going to use model view which will be shown to user and hide after 3 seconds. You can customized it if you want to hide it from code either then using fixed time.

Step 3:In SplashAppDelegate.m file write this line at the end of applicationDidFinishLaunching method.

[viewController showSplash];

Step 4:In your SplashViewController.h file write these two methods definitions and also add a IBOutlet variable.

IBOutlet UIView *modelView;

- (void)showSplash;
- (void)hideSplash;

Step 5:Write the following code at the end of SplashController.m file

-(void)showSplash
{

UIViewController *modalViewController = [[UIViewController alloc] init];

modalViewController.view = modelView;

[self presentModalViewController:modalViewController animated:NO];

[self performSelector:@selector(hideSplash) withObject:nil afterDelay:2.0];

}

//hide splash screen

- (void)hideSplash{

[[self modalViewController] dismissModalViewControllerAnimated:YES];

}

Step 6:Now you have to map modelView inside Interface builder. (Watch video to better understand this) Drag a view to your SplashView

Step 7:Add the UIImageView to new view and change the image name to Default.png. Map this to modelView in SplashController.

Splash Screen code

You can grab this code from here.

original article: http://adeem.me/blog/2009/06/22/creating-splash-screen-tutorial-for-iphone/

Post to Twitter

iPhone SDK with iPhone Remote

animusic3 asked:


This is practically a virtual iPhone. It’s a program made by Apple to help developers and computer programmers design programs that are compatible with the iPhone and the iPod Touch. This is just the Safari demo with a touch screen interface. Since it’s virtual with a touch screen, it’s hard to get it to follow my commands perfectly.

Earn Money Off your websites

Post to Twitter