如何使用 UISegmentedControl 更改 tableview 中的数据源

发布于 2024-08-27 19:55:30 字数 69 浏览 3 评论 0原文

如何使用UISegmentedControl更改tableview中的数据源? 与 sql 表 或从数组中读取数据 谢谢

how to use UISegmentedControl to change datasource in tableview?
with sql tables
or read data from arrays
thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

最笨的告白 2024-09-03 19:55:30
  1. 使用 -addTarget:action:forControlEvents: (带有事件 UIControlEventValueChanged)为分段控件设置响应操作。
  2. 在操作中,检查发件人的 selectedSegmentIndex 属性。使用它来确定要使用哪个数据源。
  3. 更改表视图的 dataSource 属性。
  1. Use -addTarget:action:forControlEvents: (with events UIControlEventValueChanged) to set up a response action for the segmented control.
  2. In the action, check the sender's selectedSegmentIndex property. Use this to determine which data source to use.
  3. Change the table view's dataSource property.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文