如何通过编程方式单击iPhone上的按钮来制作视图?

时间:2010-02-25 04:13:17

标签: iphone

我用UIButtons开发了一个带有navigationBar的程序,现在我不知道如何通过单击Button来获取视图。当我点击按钮时,它应该显示一个不同的视图。我还想知道在传递给视图之后,如何以编程方式导航回到之前的视图?

2 个答案:

答案 0 :(得分:1)

您需要pushViewController:animated:popViewControllerAnimated:

查看UINavigationController documentation

答案 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:)