After hours googling, I found no solution..
I want to add these attributes to a cell but this code does not work
AppCell *cell = [[AppCell alloc] init];
cell.layer.cornerRadius = 5.0;
cell.layer.shadowColor = [[UIColor blackColor] CGColor];
cell.layer.shadowOpacity = 1.0;
cell.layer.shadowRadius = 10.0;
cell.layer.shadowOffset = CGSizeMake(0.0f, 0.0f);
What is the solution?? .. Thank you very much in advance