Programming Reference/Librarys
Question & Answer
Q&A is closed
- (id)initWithFrame:(CGRect)frame;
Returns a UIImageView with a given frame.
Return Value - UIImageView
// ** Create a frame ** CGRect frame = CGRectMake(40.0f, 40.0f, 100.0f, 100.0f); // ** Initialize imageView with frame** UIImageView *myImageView = [[UIImageView alloc]initWithFrame:frame]; // ** Output ** NSLog(@"%@", myImageView);
2013-01-01 20:37:39.975 UIImageViewSample[572:11303] <UIImageView: 0x755b370; frame = (40 40; 100 100); userInteractionEnabled = NO; layer = <CALayer: 0x755ae70>>