iPhone SDK:检查单击了哪个按钮并加载特定变量
我在界面生成器中有 48 个项目,每个项目名为 item1、item2、item3、...、item48 等,并且有 2 个字符串和 1 个链接到每个项目的图像 URL。
单击后,该项目会显示一个模态视图,其中应在表格视图中包含 3 个特定变量。
我如何编程,以便当单击每个项目时,模式视图将显示单个项目的特定变量?
I have 48 items each named item1,item2,item3,...,item48,etc in interface builder and have 2 strings and 1 image URL linked to each item.
ON clicked, the item present a modal view which should contains the 3 specific variables in a tableview.
how do i program such that when each item is clicked, the modal view will display the specific variables of the individual item?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
唔。您可以使用 tableView 创建一个视图控制器并将其用作 modalView 控制器。该表的数据源将是一个数组。因此,您只能在单击按钮时更改数组的内容并调用模态视图控制器。
Hmm. You can create one view controller with tableView and use it as modalView controller. The table's data source will be an array. So you can only change content of your array on button clicks and call your modal viewController.