- (id)initWithFrame:(CGRect)frame;
Returns a UILabel with a given frame.
**Return Value**
- UILabel
===== ObjC Sourcecode Example =====
// ** Create a frame **
CGRect frame = CGRectMake(40.0f, 40.0f, 100.0f, 32.0f);
// ** Init label with frame **
UILabel *aLabel = [[UILabel alloc]initWithFrame:frame];
// ** Output **
NSLog(@"%@", aLabel);
==== Output for this example code ====
2012-12-30 19:12:05.250 UILabelSample[1364:11303] >