The UICollectionView class manages an ordered collection of data items and presents them using customizable layouts. UICollectionView has been available since iOS 6.
0
votes
1answer
10 views
Detect user dragging items out of UICollectionView?
I've got a UICollectionView, and I'd like to be able to touch-and-drag items up and out of the View, and thus delete them. (Very much along the same lines as how the Dock works on OS X: drag ...
0
votes
1answer
5 views
Error when adding Supplementary Header View to UICollectionView
I am getting the following error implementing the supplementary Header View
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'no ...
1
vote
1answer
23 views
making a UIView and UICollectionView scroll together
I have a UIView, below it a UICollectionview. Both are sitting on top of a master UIScrollview. I considered using viewForSupplementaryKind (UIcollectionview delegate method). Doesnt work in my case.
...
0
votes
0answers
10 views
Animate contentOffset when contentSize become smaller the frame size in UICollectionView
I have UICollectionView with 2 sections. Each section is 75% height of screen frame height.
The screen is scrolled to the bottom, so I see 25% of the first section and 100% of second one.
Then I ...
1
vote
1answer
17 views
UICollectionViewCell dynamic height depending on UITextView font lineHeight
I am trying to implement a collection view with cells having a dynamic height.
Some of the collection view cells contains UITextView, the UITextViews have their height configured like this :
...
-2
votes
1answer
19 views
How to add the last cell to add more cells UICollectionView [on hold]
I need to last cell was different from the others and We would then add another cell.
Like this example enter link description here
0
votes
1answer
19 views
IOS: UICollectionView cell UIImage selection by longpress on cell
I created an image gallery using UICollectionView by adding UIImageView inside the cell. Images are adding dynamically. I want to select multiple images from that gallery. Selection of the images ...
0
votes
0answers
38 views
Unable to control UICollectionView using property
SO, I have a property to a UICollectionView Object
@property (strong, nonatomic) IBOutlet UICollectionView *collectionViewVARIABLE;
I held control and dragged the mouse, it's all linked up.
my ...
1
vote
0answers
15 views
How to add a UIView to the entire UICollectionView
I have a UICollectionView with a custom layout. It shows items in grid (2 columns) and it has multiple sections. It works perfect.
Now, I want to add a UIView at the top of the UICollectionView.
...
0
votes
0answers
21 views
How to Display one UICollectionVIew Cell when i Scroll (** With one Swipe **)
Would any one Please let me know how do I stop/Display one cell at a time when i scroll the UICollectionView Cell horizontally.
By default when i scroll the scrolling seems to be so smooth that it ...
0
votes
1answer
29 views
Change attributes of a UICollectionViewCell in didSelectItemAtIndexPath
I am configuring a UICollectionViewCell in a subclass, it adds 2 subviews to the contentView property, both are UIImageView and both have the hidden property set to YES. These subviews are "checked" ...
1
vote
0answers
22 views
Start UICollectionView at a specific indexpath
I currently have a collection view that does horizontal paging where each cell is fullscreen. What I want to do is for the collectionview to start at a specific index when it shows.
Right now I'm ...
0
votes
0answers
39 views
UICollectionView Mayhem
So i have a UICollectionView which i subclassed to get data from my datamodel.
There are two different types of cells for two different types of data. Currently only the top cell(wider) needs to be ...
0
votes
1answer
28 views
Different item sizes Collection view
I have a collection view, and I load some items and each item has different size images, I am trying to make each item the size of the current image. I am having some troubles setting the size of the ...
1
vote
2answers
50 views
UIScrollView delegate methods not calling properly
In order to scroll up and down i need to call two methods for that I have used the below method .I am using scrollview delegate method for UICollection as it is the subview for UIScrollView.Here is ...