Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
824 views
in Technique[技术] by (71.8m points)

uicollectionview - instagram story layout collection view swift - programmatically

I was wondering how to better set up a UI: the goal is to accomplish a instagram feed-like interface such as this one : instagram

From what I've inspected it seems to be a collectionView with a header, in that header is placed a horizontal collection view for all the stories (circle elements).

If I set a collectionView inside a viewController's view I can use the controller to kind of mediate between the view (collectionView) and the model (firestore backend) using MVC.

If I set a horizontal collectionView inside the header that I set up in this way:

func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
    let headerView = collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: headerIdentifier, for: indexPath)
    
    return headerView
}

How can I communicate between the viewcontroller and the collectionview's header? using a delegate? I don't know which is the best solution since using a header doesn't seem the best option to me.

If you have a better option I would be really happy to listen.

question from:https://stackoverflow.com/questions/65647705/instagram-story-layout-collection-view-swift-programmatically

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...