ios - Trying to display image of tableView in circular form but its not showing it at the first time -


- (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath  {    sublisttableviewcell *cell = [self.tvfestivallist dequeuereusablecellwithidentifier:@"sublisttableviewcell" forindexpath:indexpath];    cell._img.layer.cornerradius = cell._img.frame.size.width / 2;    cell._img.clipstobounds = yes;    cell._img.layer.borderwidth = 3.0f;    cell._img.backgroundcolor=[uicolor redcolor];       return cell; } 

i trying display image of tableview in circular form not showing @ first time. when scroll tableview image in cell appearing in circular form


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -