如何使用 UITextfield 来调用“单击时” UITableview
单击UITableview时调用Textfield,然后返回到调用Textfield的UITableview中所选单元格的字符串值的值?
抱歉,但我已经搜索和谷歌搜索了这个,但似乎仍然找不到任何指导。另外,这仅适用于 iPhone 应用程序,因此我无法使用弹出窗口
这可能吗?
Textfield to call when clicked a UITableview, then return to the calling Textfield the value of the string value of cell selected in UITableview?
Sorry but I have searched and googled this and still can't seem to find any guidance. Also this is for an iPhone app only, so I can't utilise popovers
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您从表中选择任何行时,在表中(所选单元格旁边)再插入一行(单元格),该行将 UITextField 作为上下文的一部分!
此方法在选择单元格时调用
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {}
您可以在文本输入完成后删除单元格!,对于 UITextField 上的添加事件。
事件名称-UIControlEventEditingDidEnd || UIControlEventEditingDidEndOnExit
When you select any row from table insert one more row(cell) in table(next to the selected cell) which having UITextField as part of context!
This method get call on selection of cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {}
you can remove the cell once your text entries get finished!, for that add event on UITextField.
events name-UIControlEventEditingDidEnd || UIControlEventEditingDidEndOnExit