Skip to content

Instantly share code, notes, and snippets.

@rhysforyou
Forked from anonymous/gist:4291147
Created December 16, 2012 02:30
Show Gist options
  • Save rhysforyou/4302566 to your computer and use it in GitHub Desktop.
Save rhysforyou/4302566 to your computer and use it in GitHub Desktop.
@interface rjhccViewController : UIViewController{
IBOutlet UIImageView *testcontainer;
IBOutlet UILabel *heightS;
IBOutlet UILabel *widthS;
}
@end
@implementation rjhccViewController
-(IBAction)img1
{
UIImage *img = [UIImage imageNamed:@"p.jpeg"];
[testcontainer setImage:img];
[testcontainer setFrame:CGRectMake(0,0,50,50)];
NSString *imgheight = [NSString stringWithFormat:@"%f",img.size.height];
heightS.text = imgheight;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment