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
Post a Comment