Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I recently added a UICollectionView to my storyboard, it's currently pushed into view by another view and this appears to be working fine however, using the storyboard editor i set the view to contain 35 cells which in the editor look fine, but when i run the app the cells are invisible. Some of the cells have UIButtons inside and these don't render either.

To double check the view was rendering i changed the background colour in the editor and ran it again, the colour updated correctly. Am i right in assuming that the setup should automatically render the cells without me having to run any delegate code if they have been setup in the editor?

Any help would be appreciated.

Thanks

EDIT----

Ok i have implemented the appropriate delegate methods in my second view controller that then pushes a segue to bring up the collectionview controller, i also added the to my second view controller header file and added the following code to the .M file:

// number of sections for the view
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
    return 1;
}

// numbers of items in section
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    return 1;
}

// cell to return (uses the custom identifier of the cell in the storyboard)
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{

    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"quickNoteCell" forIndexPath:indexPath];
    return cell;
}

I have also made sure the identifier in the cell on the storyboard uses the quickNoteCell, and changed its default colour to blue, however i am still not seeing the cell any ideas?

share|improve this question

2 Answers

up vote 0 down vote accepted

Like Jay said, put the line here under your @interface and it should work. Nothing is wrong in the code you posted.

<UICollectionViewDelegate, UICollectionViewDataSource>
share|improve this answer

Have you implemented the UICollectionViewDelegate and UICollectionViewDataSource protocols?

Is collectionView:cellForItemAtIndexPath: being called?

share|improve this answer
I've not added any code to the delegation protocols, i was under the impression that if the cells are setup in the storyboard and have items inside them (i.e. the UIButton) they should render outright without having to process any code, i'll have a look into the delegation protocols tonight and post my results, thanks for the feedback. – SmokersCough Nov 7 '12 at 17:39
Added a change to my code in my original post, i'm not sure why the cell doesn't display still. – SmokersCough Nov 9 '12 at 11:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.