sakkaras / SKSTableView

An expandable table view.
MIT License
446 stars 115 forks source link

Got wrong Indexpath when clicked Button inside SubRowAtIndexPath #27

Open kirti301290 opened 9 years ago

kirti301290 commented 9 years ago

Hi

i am using this control is works fins but facing one issue i have added one button in cellForSubRowAtIndexPath when i clicked button the i got wrong row and subrow below is mu code

{

UIButton btn=(UIButton)[cell.contentView viewWithTag:15];

[btn addTarget:self action:@selector(DeleteClicked:) forControlEvents:UIControlEventTouchUpInside];

}

-(void)DeleteClicked:(UIButton*)sender

{

CGPoint point=[sender convertPoint:CGPointZero toView:tbl_Preview];

indexpath=[tbl_Preview indexPathForRowAtPoint:point];

// i got wrong indexpath

} Please help me thanks

kksuthar321 commented 8 years ago

check this http://stackoverflow.com/questions/37677705/skstableview-got-wrong-indexpath-when-clicked-button-inside-subrowatindexpath/37677812#37677812