I am new to objective-c. Trying to learn Storyboard. I am getting following error in ViewController.h:
'retain (or strong)' attribute on property 'collectionView' does not match the property inherited from 'UICollectionViewController'
Here is the code where it is complaining:
#import <UIKit/UIKit.h>
@interface ViewController : UICollectionViewController <UICollectionViewDataSource, UICollectionViewDelegate>
@property (nonatomic, weak) IBOutlet UICollectionView *collectionView;
@end
thanks.