Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I put a Round Rect Button over a imageView,

My imageView: self.view addSubview:myImage

UPDATE

Thanks all of you! These really help me.

share|improve this question
[myImage addSubview:<button_name> ]; – Foram Mukund Shah Nov 2 '12 at 8:32
you can add it as UIButton *button=[UIButton buttonWithType:UIButtonTypeRoundedRect]; myButton.frame=CGRectMake(....); [imageView addSubview:myButton]; – developersaremad Nov 2 '12 at 9:26

closed as not a real question by Rog, Janak Nirmal, Mehul, H2CO3, Mat Nov 2 '12 at 9:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

UIButton *myButton=[UIButton buttonWithType:UIButtonTypeRoundedRect];
myButton.frame=CGRectMake(10,20,30,40); // set the size of the button here
[myImage addSubview:myButton];
[self.view addSubView:myImage]; 
share|improve this answer
You also need to set userInteractionEnabled to YES for the image view (it's off by default for UIImageView), otherwise the button won't receive any touches. – omz Nov 2 '12 at 8:33
 UIImageView *contentView = [[UIImageView alloc] initWithFrame:CGRectMake(10,10,200,200)];
[contentView setImage:[UIImage imageNamed:@"helloworld.png"]];

UIButton *b=[[UIButton alloc] init];    
b.center=CGPointMake(160, 240);
[b setImage:[UIImage imageNamed:@"icon.png"] forState:UIControlStateNormal];
[b addTarget:self action:@selector(showMenu) forControlEvents:UIControlEventTouchUpInside];
[contentView addSubview:b];

// Provide support for auto-rotation and resizing
contentView.autoresizesSubviews = YES;
contentView.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);

contentView.userIntractionEnabled = YES;
[self.view addSubView:contentView];
share|improve this answer

you can just add the UIButton (with type buttonWithType:UIButtonTypeCustom) in UIView after adding the imageView.

  UIImageView *imgview=[[UIImageView alloc]init];
  imgview.backgroundColor=[UIColor blackColor];
  imgview.contentMode=UIViewContentModeScaleToFill;
  UIButton *theButton=[UIButton buttonWithType:UIButtonTypeCustom];
  theButton.tag=i;
  [theButton addTarget:self action:@selector(buttonClicked:) 
  forControlEvents:UIControlEventTouchDown];
  imgview.frame = CGRectMake(x, y, 95, 115);
  [self.view addSubview:imgview];
  theButton.frame = CGRectMake(x, y, 95, 115);
  [imgview addSubview:theButton];
share|improve this answer

Just add the UIButton (with type RoundedRectType) in View after adding the imageView.

share|improve this answer
1  
or add the UIButton to the imageView even – Vincent Osinga Nov 2 '12 at 8:27
Yes you can add it by [self.imageView addSubView:yourButton]; – Ravi Sharma Nov 2 '12 at 8:30
but you have to specify x and y coordinates according to ImageView. – Ravi Sharma Nov 2 '12 at 8:31

You can add it as

UIButton *button=[UIButton buttonWithType:UIButtonTypeRoundedRect];
myButton.frame=CGRectMake(....); // specify the frame of the button as per your requirement
[imageView addSubview:myButton];
imageView.userInteractionEnabled=YES;`

You need to set the user interaction of the image view to TRUE as by default the interaction is FALSE.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.