Hi everyone, I'm trying to set cell.imageView cornerRadius , but it does not work.
cell.imageView.layer.cornerRadius=9;
Will it work or should I add a custom UIImageView in my cell to have rounded corners?
I also tried this
cell.imageView.layer.borderWidth=2; cell.imageView.layer.borderColor=[[UIColor blackColor]CGColor];
But it also does not work. Has anyone encountered a similar problem?
ios uitableview uiimageview
satheeshwaran
source share