- (id)initWithFrame:(CGRect)frame;
Returns a UIImageView with a given frame.
**Return Value**
- UIImageView
===== ObjC Sourcecode Example =====
// ** 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);
==== Output for this example code ====
2013-01-01 20:37:39.975 UIImageViewSample[572:11303] >