I have 3 view controllers called firstvc, secondvc, thirdvc
. And I have one collection view which will scroll horizontally. If i select my first cell
my firstvc
wil disply in my sub view on my mainviewcontroller
. Its same for 2, 3rd cell
too. Its fine .
Now i need one functionality like, if i swipe my subview
which will have all my view controllers when i am selecting any cell. I need to add swipe left or right.
For example :
if i am in firstvc
then my first cell
will be selected . Now if i swipe my subview
to right my secondvc
have to come mean while my second cell of collection view also have to highlight
I dont know how to applay.
my code :
@IBOutlet weak var collectionview: UICollectionView!
@IBOutlet weak var contentSubView: UIView!
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return self.items.count
}
// make a cell for each cell index path
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
// get a reference to our storyboard cell
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath as IndexPath) as! MyCollectionViewCell
// Use the outlet in our custom class to get a reference to the UILabel in the cell
cell.myLabel.text = self.items[indexPath.item]
// cell.backgroundColor = UIColor.cyan // make cell more visible in our example project
var borderColor: UIColor! = UIColor.clear
//var borderWidth: CGFloat = 0
if indexPath == selectedIndexPath{
borderColor = UIColor.red
//borderWidth = 1 //or whatever you please
}else{
borderColor = UIColor.white
// borderWidth = 0
}
cell.myview.backgroundColor = borderColor
// cell.myview.layer.borderWidth = borderColor
return cell
}
// MARK: - UICollectionViewDelegate protocol
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
print("You selected cell #\(indexPath.item)!")
//based on your comment remove the subviews before add on your myview
//let cell = collectionView.cellForItemAtIndexPath(indexPath) as! MyCollectionViewCell
selectedIndexPath = indexPath
for subview in contentSubView.subviews {
subview.removeFromSuperview()
}
let alertStoryBoard = UIStoryboard(name: "Main", bundle: nil)
var controller: UIViewController!
if indexPath.item == 0 {
if let allCollectionViewController = alertStoryBoard.instantiateViewController(withIdentifier:"firstvc") as? firstvc {
controller = allCollectionViewController
}
} else if indexPath.item == 1 {
if let allCollec = alertStoryBoard.instantiateViewController(withIdentifier:"secondvc") as? secondvc {
controller = allCollec
}
}else if indexPath.item == 2 {
if let wController = alertStoryBoard.instantiateViewController(withIdentifier:"Thirdvc") as? Thirdvc {
controller = wController
}
}
addChildViewController(controller)
// Add the child's View as a subview
contentSubView.addSubview(controller.view)
controller.view.frame = contentSubView.bounds
controller.view.autoresizingMask = [.flexibleWidth, .flexibleHeight]
// tell the childviewcontroller it's contained in it's parent
controller.didMove(toParentViewController: self)
}
My full project zip : https://www.dropbox.com/s/fwj745kdgqvgjxa/Collection%20view%20example.zip?dl=0