如何使用 UITextfield 来调用“单击时” UITableview

发布于 2024-10-16 17:48:07 字数 161 浏览 3 评论 0原文

单击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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与往事干杯 2024-10-23 17:48:08

当您从表中选择任何行时,在表中(所选单元格旁边)再插入一行(单元格),该行将 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文