通过标签查找对象
我有 UITableView
,单元格内有 UITextField
。每个UITextField
都有自己的标签。如何通过标签访问UITextField
?我试图用谷歌搜索这个答案,但看起来前 5 页显示了如何检查发件人的标签。
I have UITableView
with UITextField
s inside cells. Every UITextField
has his own tag. How to access UITextField
by tag? I was trying to google that answer, but looks like first 5 pages shows how to check tag of sender.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 viewWithTag 获取参考
并像平常一样向推荐人发送消息。
You can get the reference using viewWithTag
and send message to the reference as you do normally.
UITableView 仅包含可见单元格。因此,您无法访问不可见的单元格。迭代可见单元格:
for ( UITableViewCell *aCell in [theTablevisibleCells] )
{
UITextField *aField = (UITextField *)[aCell viewWithTag:kYourTextFieldTag];
}
A UITableView only holds visible cells. Therefor, you cannot access cells that are not visible. To iterate through visible cells:
for ( UITableViewCell *aCell in [theTable visibleCells] )
{
UITextField *aField = (UITextField *)[aCell viewWithTag:kYourTextFieldTag];
}
解决:
在@interface中创建指针,然后执行以下操作:
Solved:
Create pointers in @interface, and do: