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

simple question (but I can't find any useful information): when building an iPad-App, how can you draw a border around a UICollectionViewCell?

More details: I implemented a class ProductCell which extends UICollectionViewCell. Now, I would like to assign some fancy details, e.g. a border, shadow, etc. However, when trying to use something like this here, XCode tells me that the receiver type 'CALayer' is a forward declaration.

Bye Christian

share|improve this question

1 Answer

up vote 3 down vote accepted

You need to include the framework QuartzCore and import the header into your class:

#import <QuartzCore/QuartzCore.h>
share|improve this answer
Perfect! Thanks a lot! – itsame69 Oct 29 '12 at 14:03

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.