Add Progress View Object

Declare in the .h

	IBOutlet UIProgressView *MyProgressBar;
In #ViewController.m

//If view could be unloaded
//********** VIEW DID UNLOAD **********
- (void)viewDidUnload
{
	[super viewDidUnload];

	[MyProgressBar release];
	MyProgressBar = nil;
}

//********** DEALLOC **********
- (void)dealloc
{
	[MyProgressBar release];

	[super dealloc];
}

Updating Progress Bar


	MyProgressBar.progress = 0.0;		//Floating-point value between 0.0 and 1.0