我想在UIView中添加我的按鈕,就像我可以隱藏或不是它們一樣。在UIView中添加UIStuff
我的按鈕的代碼:
carte1J1=[UIButton buttonWithType:UIButtonTypeCustom];
carte1J1.tag=11;
carte1J1.frame=CGRectMake(60, 240, 50, 73.0);
[carte1J1 setImage:[UIImage imageNamed:[NSString stringWithFormat:@"%@",imagecarte1] ] forState:UIControlStateNormal] ;
[carte1J1 addTarget:self action:@selector (clicCarte1J1) forControlEvents:UIControlEventTouchUpInside];
[self.view insertSubview:carte1J1 atIndex:1];
我的看法是viewJoueur1,我嘗試添加像這樣的觀點我的按鈕。
[viewJoueur1 addSubview:carte1J1];
,並測試我試圖隱藏viewJoueur1:
viewJoueur1.hidden=YES;
但按鈕仍是可見的,我不明白爲什麼