将一个 uitableview 中的值插入到多个 uitableview 中?
你好, 我已将 sqlite 表中的值插入到 uitableView 中。但是现在我在其他视图中拥有了分段控制。当我单击分段控制的第一个选项卡时,我需要将 uitableview 的半值获取到附加到 sementedControl 的 uitableview。当我单击“其他”时我需要从 uitableview 到附加到分段控件的另一个 UITableview 获取其他半值。
感谢你
HI,
I have inserted the values from sqlite table to uitableView.But now I have the segmentedControl in other view.As i click on first tab of segmentedControl I need to get half values of uitableview to the uitableview attached to sementedControl.And when I click on Other tab I neeed to get other half values from uitableview to the another UITableview Atttached to segmented control.
thank u
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这篇帖子可能会有所帮助。否则 参见。
听起来您需要 2 个 NSArray 对象来保存 sqlite 数据中的 2 组值。然后,当您从
UISegmentedControl
中进行选择时,指向正确的数据集并调用[tableview reloadData]
说。This post might help. Otherwise see.
Sounds like you need 2
NSArray
objects holding your 2 set of values from your sqlite data. Then when you select from theUISegmentedControl
, point to the correct set of data and call[tableview reloadData]
say.