我正试图像* http.Request(func numberOfSections(in collectionView: UICollectionView) -> Int {
return 3
}
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
if section == 0 {
return 1
}
if section == 1 {
return tableData.count
}
if section == 2 {
return 1
}
return 0
}
)一样获取cookie,如何在不连接升级的情况下实现此目的(纯ws)