Add Label View Object
Declare in the .h
	IBOutlet UILabel *MyLabelName;
Write To Label
	[MyLabelName setText:MyStringName];
	[MyLabelName setText:@"Some Text?"];
Adding Value To A Label
    [SomeLabel setText:[NSString stringWithFormat:@"You currently have %d things", SomeVariable]]; 
Label Colour
    SomeLabel.textColor = [UIColor colorWithWhite:0.5 alpha:1];
Multi Line Labels
You can set the number of lines property to 0 for auto multi line.
New Lines
You can use /n in a string given to a label:
	NSString *myNewLineStr = @"Some text.\nSome text on a new line.";
	InfoTextLabel.text = myNewLineStr;
