Ios 添加';n';swift中要查看的集合视图数

Ios 添加';n';swift中要查看的集合视图数,ios,swift,uicollectionview,uicollectionviewlayout,uistackview,Ios,Swift,Uicollectionview,Uicollectionviewlayout,Uistackview,我有一个ViewController类,我在其中放置scrollView并添加stackView作为子视图。现在我想在stackView中添加collectionView的'n'个。我正在从服务器获取数据,将有不同的类别。如果类别A有数据,那么我需要为此创建一个collectionView。我需要在类本身中处理相应的collectionView数据 class ViewController: UIViewController { var scrollView : UIScrollView! v

我有一个
ViewController
类,我在其中放置
scrollView
并添加
stackView
作为子视图。现在我想在
stackView
中添加
collectionView
的'n'个。我正在从服务器获取数据,将有不同的类别。如果类别A有数据,那么我需要为此创建一个
collectionView
。我需要在类本身中处理相应的
collectionView
数据

class ViewController: UIViewController {

var scrollView : UIScrollView!
var stackView : UIStackView!
var responseFullData : JsonFullDataResponse!
var responseData : JsonResponse!

override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
    print("View Controller init")
    super.init(nibName: nil, bundle: nil)
}

required init?(coder aDecoder: NSCoder) {
    super.init(coder: aDecoder)
}

override func viewDidAppear(_ animated: Bool) {
    print("View did appear")
    scrollView.contentSize = CGSize(width: stackView.frame.width, height: stackView.frame.height)
}

override func viewDidLoad() {
    super.viewDidLoad()

    //loading all the data
    loadAllJsonData()

    //setting up scroll and stack views
    setUpScrollAndStackView()
}

override func viewDidLayoutSubviews() {
    super.viewDidLayoutSubviews()
    print("inside layout")
    scrollView.contentSize = CGSize(width: stackView.frame.width, height: stackView.frame.height)
}

func setUpScrollAndStackView() {
    scrollView = UIScrollView()
    scrollView.translatesAutoresizingMaskIntoConstraints = false
    view.addSubview(scrollView)

    view.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|[scrollView]|", options: .alignAllCenterX, metrics: nil, views: ["scrollView": scrollView]))
    view.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|[scrollView]|", options: .alignAllCenterX, metrics: nil, views: ["scrollView": scrollView]))

    stackView = UIStackView()
    stackView.translatesAutoresizingMaskIntoConstraints = false
    stackView.spacing = 20.0
    stackView.axis = .vertical
    scrollView.addSubview(stackView)


  scrollView.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "H:|[stackView]|", options: NSLayoutFormatOptions.alignAllCenterX, metrics: nil, views: ["stackView": stackView]))
  scrollView.addConstraints(NSLayoutConstraint.constraints(withVisualFormat: "V:|[stackView]", options: NSLayoutFormatOptions.alignAllCenterX, metrics: nil, views: ["stackView": stackView]))

    setUpOtherViewsInStack()
}

func setUpOtherViewsInStack() {
    if responseFullData.banner?.count != 0 {
        print("banner has data")

        var bannerCollection : BannerCollectionView = BannerCollectionView() as! BannerCollectionView
        bannerCollection.register(UINib.init(nibName: "BannerCell", bundle: nil), forCellWithReuseIdentifier: "BannerCell")
        stackView.addArrangedSubview(bannerCollection)
   }
}
横幅集合视图代码

class BannerCollectionView: UICollectionView , UICollectionViewDataSource{

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int{
        print("control is in datasource")
        return 5
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell{
       let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "BannerCell", for: indexPath) as! BannerCell
        cell.backgroundColor = UIColor.blue
        return cell
    }
}

我该如何使这项工作。我应该在哪个类和哪里设置
BannerCollectionView
委托
数据源
属性?如何初始化此项?

据我所知,您需要在
ResponseFileData.banner.count中为从0开始计数,每次添加一个collectionView

if let count = responseFullData.banner?.count {
    for i in 0..<count {
        var bannerCollection : BannerCollectionView = BannerCollectionView() as! BannerCollectionView
        bannerCollection.register(UINib.init(nibName: "BannerCell", bundle: nil), forCellWithReuseIdentifier: "BannerCell")
        stackView.addArrangedSubview(bannerCollection)
    }
}
如果let count=responseuldata.banner?.count{

对于0中的i..我在UIStackView(垂直堆栈)中添加了3个collectionView。整个视图可以垂直滚动,集合项可以水平或垂直滚动

class HomePageViewController: UIViewController,HeaderViewDelegate {

var scrollView : UIScrollView!
var stackView : UIStackView!
var responseFullData : JsonFullDataResponse!

if responseFullData?.menu?.count != nil{
        print("menu has data")

        var menuCollection : MenuCollectionView = MenuCollectionView(frame: CGRect.zero, collectionViewLayout: UICollectionViewFlowLayout.init())
        menuCollection.backgroundColor = .white
        menuCollection.menuData = (self.responseFullData.menu)!
        menuCollection.dataSource = menuCollection.self
        menuCollection.delegate = menuCollection.self
        createCollectionViews(collectionViewClass: menuCollection, identifier: "MenuCell",height : 175)
    }
    if responseFullData?.hongbei?.count != nil {
        print("hongbei has data")
        var hongbeiCollection : HongbeiCollectionView = HongbeiCollectionView(frame: CGRect.zero, collectionViewLayout: UICollectionViewFlowLayout.init())

        hongbeiCollection.dataSource = hongbeiCollection
        hongbeiCollection.delegate = hongbeiCollection
        hongbeiCollection.allowsSelection = true
        hongbeiCollection.backgroundColor = .white
        hongbeiCollection.hongbeiData = (self.responseFullData.hongbei)!


        addHeaderView(headerTitle : "Hongbei")
        createCollectionViews(collectionViewClass: hongbeiCollection, identifier: "HongbeiCell",height : 150)

    }
    if responseFullData?.freeZone?.count != nil {
        print("freezone has data")
        var freezoneCollection : FreeZoneCollectionView = FreeZoneCollectionView(frame: CGRect.zero, collectionViewLayout: UICollectionViewFlowLayout.init())
        freezoneCollection.dataSource = freezoneCollection.self
        freezoneCollection.delegate = freezoneCollection.self
        freezoneCollection.backgroundColor = .white
        freezoneCollection.freeZoneData = (self.responseFullData.freeZone)!
        addHeaderView(headerTitle : "FreeZone")
        createCollectionViews(collectionViewClass: freezoneCollection, identifier: "FreeZoneCell",height : 150)
    }

func createCollectionViews(collectionViewClass : UICollectionView, identifier : String,height : CGFloat ){

    collectionViewClass.widthAnchor.constraint(equalToConstant: self.view.frame.width).isActive = true
    collectionViewClass.heightAnchor.constraint(equalToConstant: height).isActive = true
    collectionViewClass.register(UINib.init(nibName: identifier, bundle: nil), forCellWithReuseIdentifier: identifier)
    collectionViewClass.showsHorizontalScrollIndicator = false
    collectionViewClass.showsVerticalScrollIndicator = false

    stackView.addArrangedSubview(collectionViewClass)

}

 func addHeaderView(headerTitle : String){
    let headerView = HeaderView.instanceFromNib() as! HeaderView
    headerView.widthAnchor.constraint(equalToConstant: self.view.frame.width).isActive = true
    headerView.heightAnchor.constraint(equalToConstant: 20).isActive = true
    headerView.headerLabel.text = headerTitle
    headerView.frame = headerView.frame.offsetBy(dx: 20, dy: 0)
    headerView.delegate = self
    stackView.addArrangedSubview(headerView)

}
}


对于堆栈中的每个collectionView,我都有一个单独的类,在这里我处理数据源和委托方法。因此,我可以在每个collectionView中为我想要的收藏项目设置任意数量。

尝试添加bannerCollection.TranslatesAutoResistingGMaskintoConstraints=false在StackView中添加之前。问题是,您需要在UIStackView=ResponsealData.banner?中添加多个collectionView。计数??否。ResponseFileData有5个数组,如横幅、菜单、项目等。我正在检查每个数组的计数是否不是0,然后为每个数组添加集合视图以显示这些项目。你明白我的意思了吗?responseuldata是字典吗?其他数组的键是什么?类JsonFullDataResponse:HandyJSON{var banner:[banner]?var menuData:[menuData]?var selectedGoods:[selectedGoods]?var merchants:[merchants]?var bestsall:[bestsall]?var marketing:[marketing]?
class MenuCollectionView: UICollectionView,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout {

var menuData : [MenuData]!

override init(frame: CGRect, collectionViewLayout layout: UICollectionViewLayout) {
    let layout = UICollectionViewFlowLayout()
    layout.scrollDirection = .horizontal
    super.init(frame: frame, collectionViewLayout: layout)

}

   func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int{
    print("Menu")
    return menuData.count
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell{
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "MenuCell", for: indexPath) as! MenuCell

    cell.menuLabel.text = menuData[indexPath.item].title!

    return cell
}

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize{
    return CGSize(width: (collectionView.frame.width * 0.175), height: 75)
}