0

有谁知道,如何在没有情节提要的情况下使用按钮切换视图?感谢帮助 !(:

4

1 回答 1

0
 [myButton addTarget:self action:@selector(buttonClicked) forControlEvent:UIControlEventTouchUpInside];

然后实现你的选择器 buttonClicked

-(void) buttonClicked {
    UIView* newView = [[UIView alloc]init] ;
    self.view = newView ;
   } 
于 2012-11-15T21:40:39.053 回答