ボタンをプログラムで別のView Controllerクラスに接続するにはどうすればよいですか 事前に感謝しますコードが必要です 私は本当に初心者なので、ここに私のボタンコードがあります:私のvieコントローラークラス名は year.m
-(void) year:(id)sender{
NSLog(@"Year button clicked");
}
編集:
ここに私のプログラムボタンのコードがあります
UIBarButtonItem *yearButton= [[UIBarButtonItem alloc] initWithTitle:@"Year" style:UIBarButtonItemStyleBordered
target:self action:@selector(year:)];