从自定义 UITableViewCell 访问 indexPath
我正在尝试创建一个 UITableView 来允许用户输入数据,类似于 UITableView 的许多设置,其中包含一些文本字段和对其他表格视图的复选框的标注。对于应用程序中如此常见的功能,这似乎并不是很简单。
我在从自定义 UITableViewCell 访问 indexPath.row 时遇到问题。这是我分配自定义 UITableViewCell 的地方。
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[TextFieldCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
在我的 TextField 类的 @implementation 中,在 - (id)initWithStyle: 中,我尝试使用以下方式访问 indexPath:
NSIndexPath *indexPath = [(UITableView *)self.superview indexPathForCell:self];
... 以便设置文本字段的标签,例如:
textRow = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 200, 21)];
textRow.tag = [indexPath row];
任何人都可以阐明我的问题或指出我的问题吗?以编程方式创建基本设置样式 TableView 的方向。
谢谢
I'm trying to create a UITableView to allow the user to enter data, similar to a lot of the settings UITableViews, with some textfields and callouts to other tableviews for checkboxes. For such a common feature in apps, this does not seem to be very straight forward.
I'm having trouble accessing the indexPath.row from my custom UITableViewCell. Here is where I allocate my custom UITableViewCell.
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[TextFieldCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
In my TextField class's @implementation, in - (id)initWithStyle: I'm trying to access the indexPath with:
NSIndexPath *indexPath = [(UITableView *)self.superview indexPathForCell:self];
... in order to set the textfield's tag like:
textRow = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 200, 21)];
textRow.tag = [indexPath row];
Could anyone please shed some light on my problem or point me in the direction of creating basic setting-style TableViews programatically.
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题可能是在单元格初始化时它尚未添加到 UITableView - 因此 self.superview 返回 nil。
您需要向 TextFieldCellClass 添加 setTag: 方法。我认为代码位于 cellForIndexPath 或其他内容中,因此 indexPath 将传递给该方法。
设置标签方法应该如下所示:
I think the problem might be that at the time of initialisation of your cell it hasn't been added to the UITableView - hence self.superview is returning nil.
You will need to add a setTag: method to your TextFieldCellClass. I presume that code was inside cellForIndexPath or whatever, so indexPath will be passed to that method.
The set tag method should look something like this: