In my application, when the user clicks an infoButton, it should add another view to the screen at a specific location. I'm trying to achieve this behavior with the following method:

- (IBAction)showInfo1:(id)sender
  {
    UIView *myView1 = [[UIView alloc] initWithFrame:CGRectMake(25,25,50,20)];   
    [self.view addSubview:myView1]; 
  }

(I declared everything in the header file of my class.)

When I run the code and press the button, nothing appears to happen (I don't see the new view).

I also noticed that XCode is displaying the following warning:

Local declaration of 'myView1' hides instance variable.

Does anyone have any ideas?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

How do you know nothing changes?

It looks like myView1 doesn't actually contain anything. Try setting the background color of myView1

- (IBAction) showInfo1: (id) sender
{
    UIView *myView1 = [[UIView alloc] initWithFrame:CGRectMake(25,25,50,20)];   
    myView1.backgroundColor = [UIColor redColor];
    [self.view addSubview: myView1]; 
}

To open it at a specific point you need to change the parameters in CGRectMake() for example

to open it at the very top left with a width of 50 and height of 20 you would do:

CGRectMake(0, 0, 50, 20)
link|improve this answer
And what does the warning means? – theCodingError Mar 29 '11 at 16:14
whats the warning you receive? – JFoulkes Mar 29 '11 at 16:16
Local declaration of 'myView1' hides instance variable. – theCodingError Mar 29 '11 at 16:17
This means you have a variable called myView1 in your header file, you either need to change the name of the variable in the header of the one in showInfo1 to something else. – JFoulkes Mar 29 '11 at 16:18
feedback

"Local declaration of 'myView1' hides instance variable." message appears because you have declared in your class some property with the same name (even if the type is different).

If you put UIView *myView1 in your class definition, your method would look like

- (IBAction)showInfo1:(id)sender{
  myView1 = [[UIView alloc] initWithFrame:CGRectMake(25,25,50,20)];   
  [self.view addSubview:myView1]; 
}

Here comes more considerations: you must to release myView1 when you stop using it, avoid to be placed more than once, etc. but here we have the basic idea.

Finally, maybe your view is already added, but 'cause it doesn't contains anything yet, you don't notice it. Also you would like to check UIViewController to see if works better for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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