在 iOS 上,使用导航栏中的分段控件切换集合视图的正确/最有效方法是什么?
问问题
2365 次
1 回答
3
你说的切换是什么意思?其实你可以使用单个collection view,根据switch值改变collection的数据源
为您的分段控件添加操作以更改数据源
- (IBAction)changeCollectionViewData:(UISegmentedControl*)sender {
switch (sender.selectedSegmentIndex) {
case 0:
self.images =self.cars // displays images of cars;
break;
case 1:
self.images =self.bike // displays images of bikes;
break;
}
[self.collectionView reloadData]
}
// self.images is the data source array
请记住,您需要相应地设置numberOfItemsInSection
于 2013-04-18T04:43:07.553 回答