I am using AQGridView in my project. we need to create a black colored border around each image. Can anyone help me on this.
Thanks in advance.
Regards, Jas.
I am using AQGridView in my project. we need to create a black colored border around each image. Can anyone help me on this.
Thanks in advance.
Regards, Jas.
for UIImageView it is like something :-
[imageView.layer setBorderColor: [[UIColor blackColor] CGColor]];
[imageView.layer setBorderWidth: 2.0];
Hope it works on AQGridView...
Cheers
You could also put your AQGridView in a larger UIImageView that was empty but had the background set to black.