如何在iPhone中添加FORWARD按钮

时间:2015-12-01 16:18:50

标签: ios swift

在主要细节中,有一个" back"查看详细信息时按钮存在,但如何添加"转发"按钮?点击它会将用户带到下一条记录/详细信息。TableView example image

点击">",将用户带到" kate bell"。解决的问题是去"所有联系人",然后点击" kate bell"

我对Obj-C不熟悉,而且我学得很快。

我快速写了这篇文章。

navigationItem.rightBarButton = UIBarButtonItem( title: "Next", style: .Plain, target: self, action: "next") 

@IBAction func next () { }

1 个答案:

答案 0 :(得分:1)

以下代码会在导航栏的右侧添加一个项目,并在点按时调用-forwardAction:方法;

-(void)viewDidLoad {
    [super viewDidLoad];

    UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithTitle:@"title" style:UIBarButtonItemStylePlain target:self action:@selector(forwardAction:)];
    self.navigationItem.rightBarButtonItem = button;
    // ...
}

-(IBAction)forwardAction:(id)sender {}