我想以编程方式将其连接到UIButton(在stackView中),因此按下它将导航到CCController。
UIButton *ccbutton = [[UIButton alloc] init];
[ccbutton setTitle:@"CC" forState:UIControlStateNormal];
[ccbutton addTarget:self action:@selector(ccPage) forControlEvents:UIControlEventTouchUpInside];
我的ccPage方法给我带来了麻烦,我有点初学者并且无法弄清楚如何解决我的问题,我相信我需要使用performSegueWithIdentifier但我还没有找到它的成功(或其他备择方案)。
我已经注释掉的那些不能自己工作,我想从其他类似的问题我已经读过我需要做一个功能覆盖,但我真的不知道我应该添加哪些来自他们的说明。谁能帮我一把,我会非常感激,因为我感到非常失落
-(void)ccPage {
//[self performSegueWithIdentifier:@"ccPageLinkCell" sender:self];
//[self presentViewController:@"ccPageLinkCell" animated: TRUE, completion:nil];
//[self performSegueWithIdentifier:@"theCCController" sender:self];
//[self presentViewController:@"theCCController" animated: TRUE, completion:nil];
}