I have a problem customizing my AQGridViewCell. I'd like to have the whole cell having a transparent background, but the following inside of the initWithFrame:reuseIdentifier does not do the job:
self.backgroundView.backgroundColor = [UIColor clearColor];
self.contentView.backgroundColor = [UIColor clearColor];
self.backgroundColor = [UIColor clearColor];
self.backgroundView.opaque = NO;
self.contentView.opaque = NO;
self.opaque = NO;
Does anyone have an idea how to solve this?
Thank you very much for any response!
EDIT I found this, but this does not seem to work either: https://github.com/AlanQuatermain/AQGridView/pull/108#issuecomment-3610006