标签:hid end ping for void tab 根据 ati sid
分组的tableview cell上面有按钮,根据按钮确定点击的是哪一组的哪一行。对于初学者来说不好判断,那么下面就来跟大家分享一下如何实现吧。cell 方法里面添加
[cell.pingjiaBtn addTarget:self action:@selector(didPingJiaButton: event:) forControlEvents:UIControlEventTouchUpInside];
按钮点击事件
- (void)didPingJiaButton:(UIButton *)sender event:(id)event{
NSSet *touches=[event allTouches];
UITouch *touch=[touches anyObject];
CGPoint cureentTouchPosition=[touch locationInView:tableviews];
//得到indexPath
NSIndexPath *indexPath=[tableviews indexPathForRowAtPoint:cureentTouchPosition];
NSDictionary *dic = [NSDictionary dictionaryWithDictionary:self.listarr[indexPath.section][indexPath.row]];
ShoppingPingFenViewController *view = [[ShoppingPingFenViewController alloc]init];
view.tidStr = String(dic[@"tid"]);
view.gidStr = String(dic[@"gid"]);
view.cidStr = String(dic[@"cid"]);
view.imgStr = String(dic[@"goods_pic"]);
view.hidesBottomBarWhenPushed = YES;
[self.navigationController pushViewController:view animated:NO];
}
以上就是为大家分享的内容了,如果还是存在有不理解,或者有不懂的地方,都是可以留言咨询的。
本文由专业的郑州app开发公司燚轩科技整理发布,如需转载请注明出处。
标签:hid end ping for void tab 根据 ati sid
原文地址:http://blog.51cto.com/13686158/2313542