Programming Reference/Librarys
Question & Answer
Q&A is closed
// ** 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);
2012-12-30 19:12:05.250 UILabelSample[1364:11303] <UILabel: 0x7457230; frame = (40 40; 100 32); clipsToBounds = YES; userInteractionEnabled = NO; layer = <CALayer: 0x7457f70>>