Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created a UIImageview programmatically, and I am showing an image from a string which contains url of a picture

But I wish to show a part(a rectangle at center) of the original image. How do I achieve this?

    NSString * urlString = @"http://4.bp.blogspot.com/-  rEqVgkdnuxE/TWd6Fm6EWtI/AAAAAAAABSc/cWCehI51v_Y/s1600/red_rose_flower3.jpg"

   NSURL *url = [NSURL URLWithString:urlstring];
   NSData *data = [NSData dataWithContentsOfURL:url];
   UIImage *img = [[UIImage alloc] initWithData:data];
share|improve this question
You can read more information in these answers: stackoverflow.com/questions/8035673/… – Dave Nov 26 '12 at 16:53

1 Answer

up vote 1 down vote accepted

Try this on for size :)

UIImageView *imageView = [UIImageView alloc] initWithImage:image];
[imageView setFrame:SIZEOFRECTANGLE];
[imageView setContentModeCenter];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.