0

私は数日前に問題に遭遇しました。どこでも解決策を検索しましたが、どれもうまくいきませんでした。次のようなコード:

customView.h
cusomView:UIViewController
{
UIButton *myButton;
}

-(void)doSomething:(id)sender;

customView.m
-(void)viewDidLoad
{
  [super viewDidLoad];
  self.view=[UIView alloc] initWithFrame:CGRectMake(0,100,100,100);
  //init the button....
  [myButton addTarget:self action:@selector(doSomething:)     forControlEvents:...upInside];
  [self.view addSubViews:myButton];
}
-(void)doSomething:(id)sender
{
.......
}


myMainViewController
-(void)viewDidLoad
{
   ......
   customView *cusView=[customView alloc] init];
   [self.view addSubViews:cusView];
}

ただ、表示はいいのですが、ボタンを押しても反応がありません。

4

1 に答える 1

0

myMainControlleruibutton を直接追加しない理由はありますか?

于 2013-01-25T04:56:02.287 に答える