Tagged Questions
0
votes
1answer
20 views
Interpolation issue on custom UICollectionViewFlowLayout
I'm having an issue with a custom UICollectionViewFlowLayout
Like this video shows Issue Video, when my cell bounces back to the center (0:12 - 0:16) my transformation interpolation fails, and it ...
3
votes
1answer
40 views
Create Quilt Layouts in UICollectionView
I need this type of UICuollectionView.Each cell have one image and a label.The cell height and width depends on text of that label.
- (UICollectionViewCell *)collectionView:(UICollectionView *)cv ...
0
votes
1answer
14 views
UIACollection view total cell count issue
I am working on UIAutomation for an app and facing some issue while collecting the cells for a collection view on the app.
When I do collectionView.cells() in javascript for UIAutomation, I get back ...
0
votes
1answer
13 views
How to force UICollectionView with fewer items to scroll?
I am working with a UICollectionView that displays fewer items than necessary to fill the whole screen.
With this setting, the view simply does not scroll (move and bounce), when I add like 20 items ...
0
votes
1answer
45 views
iOS UICollectionView and CoreData
I'm new to iOS and still trying to wrap my head around the basics (my newbie disclaimer). I'm starting to play with persistent data and presenting this data with uicollectionview.
I can create cells ...
-1
votes
1answer
52 views
UICollectionView Layout Issue
I am using UICollectionView using the flow layout.
I have made a custom Uicollectionviewcell for the same.
But on running the project the console keeps on throwing this error-
the behavior of the ...
0
votes
0answers
46 views
UICollectionView and collection view cells not appearing on element tree
I am working on UIAutomation for an ios app and logging an element tree for all the elements inside an UITableView. It does provide me with the name and value pairs for all table groups and table ...
0
votes
0answers
29 views
CATransform3D not being applied properly in custom UICollectionViewFlowLayout
I'm having a strange issue with custom UICollectionViewFlowLayout, my cells contain an imageView, I apply a zoom effect to my cells... however I think that I'm doing something wrong with the Zoom ...
0
votes
1answer
133 views
UICollectionView: paging like Safari tabs or App Store search
I want to implement "cards" in my app like Safari tabs or App Store search.
I will show user one card in a center of screen and part of previous and next cards at left and right sides. (See App Store ...
1
vote
0answers
42 views
NSInternalInconsistencyException posErrorMarker bug in iOS
I'm getting a random error that can't be deterministically recreated, which makes it a pain to debug. The exception is
NSInternalInconsistencyException { Rows: 0x1e5eb080.posErrorMarker == 1 + ...
0
votes
1answer
46 views
UICollectionViewLayout prepareLayout is called for any scrolling
Found this strange behavior while implementing a custom UICollectionViewLayout subclass. I set up the subclass methods except for collectionViewContentSize. All the cells showed up where I expected, ...
0
votes
1answer
44 views
iOS6 UIStoryboard how to add a UICollectionReusableView to a UICollectionView object?
I'm running into a silly issue when working with a UICollectionView - I've added a "UICollectionReusableView" by dragging it to within the UICollectionView at the top position. I'm expecting that this ...
2
votes
0answers
78 views
Create a book shelf by using UICollectionView
I'm going to create a book shelf in one of my project. The basic requirement is as following:
similar to iBooks bookshelf
supports both orientation well
supports all kinds of iOS device well ...
-2
votes
1answer
61 views
Problems with UICollectionView - one selected cell implies other selections
In my collection view is allowed multiple selection.
When i tap an item, the system automatically select an item that is not visible.
Here's my code:
-(UICollectionViewCell ...
1
vote
1answer
78 views
Looping through all cells in UICollectionView
I have a UICollectionView and i want to add animation to each cell.
Currently I'm using
for(UICollectionView *cell in collectionView.visibleCells){
//add animation to cell here
}
But that only ...