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.

In my iPhone app, I have SPGameDesk : UIView class, creating it from other class like:

SPGameDesk* gameDesk = [[SPGameDesk alloc] init];
[gameDesk createWithLevel:5];
[appWindow addSubview:gameDesk];

In my SPGameDesk class, in one method, I create UIButtons:

holesRow = [[NSMutableArray alloc] init];
for (int i=0; i<3; i++) {
    [holesRow addObject:[[UIButton alloc] initWithFrame:CGRectMake((40*i)+5, 150, 30, 30)]];
    [[holesRow objectAtIndex:i] setBackgroundColor:[UIColor blueColor]];
    [[holesRow objectAtIndex:i] addTarget:self action:@selector(holeSelected:) forControlEvents:UIControlEventTouchUpInside];
    [self addSubview: [holesRow objectAtIndex:i]]; 
}

And lower in SPGameDesk class I have method:

- (void)holeSelected:(id)sender {
    NSLog(@"SELECTED");
}

But when I touch my button, nothing happens, like some other UIView covers my button (there is no other UIView), or like SPGameDesk has userInteraction disabled (I checked - it is not).

Where is my problem? What should I check?

share|improve this question
You can debug it by cycling through after and seeing what the target and action pointers are (make sure they are not nil and correct. – Justin Meiners Nov 13 '10 at 4:57
Are you sure holesRow isn't being released somewhere? – raidfive Nov 13 '10 at 5:01

1 Answer

up vote 1 down vote accepted

What is the frame for your gameDesk view? It looks like it could be 0,0,0,0. Try setting it to the bounds of the parent window. Use initwithframe instead of init.

share|improve this answer
Yes you are right! I just didn't think about it. Thx for your help! – splatt Nov 13 '10 at 13:59

Your Answer

 
discard

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

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