我用UIButtons开发了一个带有navigationBar的程序,现在我不知道如何通过单击Button来获取视图。当我点击按钮时,它应该显示一个不同的视图。我还想知道在传递给视图之后,如何以编程方式导航回到之前的视图?
答案 0 :(得分:1)
您需要pushViewController:animated:
和popViewControllerAnimated:
。
答案 1 :(得分:0)
你也可以开发类似的东西,
CGRect cg = CGRectMake(130.0, 220.0, 100.0, 30.0);
UIButton *btn = [[UIButton alloc] initWithFrame:cg];
btn.showsTouchWhenHighlighted = YES;
btn.backgroundColor = [UIColor blueColor];
[btn addTarget:self action:@selector(Showlbl:) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:btn];
并在上面给出正确的按钮事件,
action:@selector(Showlbl:)