如何使用 UISegmentedControl 更改 tableview 中的数据源
如何使用UISegmentedControl更改tableview中的数据源? 与 sql 表 或从数组中读取数据 谢谢
how to use UISegmentedControl to change datasource in tableview?
with sql tables
or read data from arrays
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-addTarget:action:forControlEvents:
(带有事件 UIControlEventValueChanged)为分段控件设置响应操作。selectedSegmentIndex
属性。使用它来确定要使用哪个数据源。dataSource
属性。-addTarget:action:forControlEvents:
(with events UIControlEventValueChanged) to set up a response action for the segmented control.selectedSegmentIndex
property. Use this to determine which data source to use.dataSource
property.