如何在列表视图上添加列表按钮

时间:2015-08-11 05:18:55

标签: ios uitableview listview

我想在listview中添加Option buttion。

目前我正在关注 ios-programming-tutorial-create-a-simple-table-view-app

本教程填充列表。现在它将正确显示列表。现在我想在此列表项目上添加一个Option按钮。

点击该按钮时,我需要显示一个包含3个选项的列表。现在我在UITableViewCell页面上添加了一个UIButton,它也将显示在列表中。

如何在此按钮上单击选项列表?

1 个答案:

答案 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并填充它。 :)