Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在应用程序中有十个复选框。如果用户按下复选框,则在下一行中将添加 UITextfield。
任何人都可以建议如何更快地完成它,因为它有很多检查条件吗?请检查我提到的屏幕截图。
您将使用带有 2 个自定义单元格的 UITableView 来实现这一点
然后例如,– tableView:didSelectRowAtIndexPath:对于您实现的复选框单元insertRowsAtIndexPaths:withRowAnimation:格,在所选复选框单元格下方插入您的 textField 单元格
– tableView:didSelectRowAtIndexPath:
insertRowsAtIndexPaths:withRowAnimation:
希望这会有所帮助并让您走上正确的道路