我想在listview中添加Option buttion。
目前我正在关注 ios-programming-tutorial-create-a-simple-table-view-app
本教程填充列表。现在它将正确显示列表。现在我想在此列表项目上添加一个Option按钮。
点击该按钮时,我需要显示一个包含3个选项的列表。现在我在UITableViewCell
页面上添加了一个UIButton,它也将显示在列表中。
如何在此按钮上单击选项列表?
答案 0 :(得分:0)
而不是按钮我给你一个关于tableViewCell的例子点击
在你的TableVC中
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath: (NSIndexPath *)indexPath
{
DestinationViewController *controller = [[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"DestinationVC"];
controller.delegate = self;
_popOverController = [[UIPopoverController alloc]initWithContentViewController:controller];
_popOverController.delegate = self;
[_popOverController presentPopoverFromRect:(CGRect){point, CGSizeMake(0,0 )} inView:[self view] permittedArrowDirections:UIPopoverArrowDirectionAny animated:NO];
}
制作一个DestinationVc并填充它。 :)