作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个自定义单元格,里面有一个按钮。有没有一种方法可以在按钮操作方法中访问从 mainVC.m
到 customCell.m
的变量?
我可以这样做:mainVC main = [[mainVC alloc] init];
,但这会生成一个新的主文件。我需要访问原件。
更新
我想要做的是获取被单击的按钮所在单元格的索引路径。然后将该索引路径添加到在 mainVC.m 中声明的 mutableArray。
或者,相反,如果可能的话,我想从 heghtForRowAtIndexPath
类中的 mainVC.m 访问 customCell.m 中的变量
最佳答案
您可以在 cellForRowAtIndexPath 中的按钮中设置标记属性:
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath{
...
cell.button.tag = indexPath.row;
...
}
然后开始行动
-(IBAction)buttonPressed:(id)sender{
UIButton *button = (UIButton *)sender;
NSLog(@"%d", [button tag]);
}
当然这个索引应该是指你VC上某个数组的索引
关于ios - 如何从 mainVC.m 访问 customCell.m 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28422596/
我是一名优秀的程序员,十分优秀!