In a collection view, I display images of friends. And I need to display total number of friends at the bottom of the collection view.
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
{
totalFriendsCount.text = " \(myProfileimages.count) Friends"
return myProfileimages.count
}
I can display total number with above code, I couldn't find a way to place the label at the bottom of all images. Appreciate your help.