gpt4 book ai didi

iphone - 当选择 UITableView 中的行时,使 UINavigationBar 中的完成按钮出现

转载 作者:行者123 更新时间:2023-11-29 04:40:10 24 4
gpt4 key购买 nike

当选择 UITableView 中的任何行时,我想让 UINavigationBar 出现一个完成按钮,并且我希望此按钮执行操作 performSegueWithIdentifier。关于如何实现它有什么想法吗?

最佳答案

将以下内容添加到您的 tableView:didSelectRowAtIndexPath: 方法中:

//add done button to navigation bar
UIBarButtonItem *doneBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(userPressedDone)];
self.navigationItem.rightBarButtonItem = doneBarButtonItem;

然后在你的 View Controller 中的某个地方有一个像这样的方法:

-(void)userPressedDone {
//perform segue
[self performSegueWithIdentifier:@"mySegue" sender:nil];
}

关于iphone - 当选择 UITableView 中的行时,使 UINavigationBar 中的完成按钮出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10504132/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com