美文网首页
通过button找到所在的cell;

通过button找到所在的cell;

作者: Ios腾 | 来源:发表于2019-04-01 16:33 被阅读0次

    myTableViewCell *cell = [self.tableView cellForRowAtIndexPath:[self.tableView indexPathForCell:((myTableViewCell*)[[btn superview]superview])]];

    通过button找到所在的cell;

      (1)  NSDictionary*dic = (NSDictionary*)self.allArr[indexPath.row];

        CellMOdel* model = [[CellMOdelalloc]init];

        [modelfill:dic];

    (2)    NSIndexPath*index = [self.tableViewindexPathForCell:cell];

        NSDictionary*dic =self.allArr[index.row];

        CellMOdel* model = [[CellMOdelalloc]init];

        [modelfill:dic];

    通过indexpath 找到数据;

    相关文章

      网友评论

          本文标题:通过button找到所在的cell;

          本文链接:https://www.haomeiwen.com/subject/ckgvbqtx.html