this is what I'm getting for boiler code now,
But before I used to get the data source methods...also I noticed that I dont even have the UICollectionView as a reference in the documentation. Any idea whats going on?
Code:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
But before I used to get the data source methods...also I noticed that I dont even have the UICollectionView as a reference in the documentation. Any idea whats going on?
Last edited by a moderator: