ios - BackgroundColor of UItableviewCell Notworking -
ios - BackgroundColor of UItableviewCell Notworking -
i setting background color of uitableviewcell like
cell.contentview.backgroundcolor = [uicolor colorwithred:8.0 green:210.0 blue:11.0 alpha:1.0];
its not working, however, if
cell.contentview.backgroundcolor = [uicolor graycolor];
it works then. help
uicolor
has defined between 0 , 1 rgb value work (uicolor class reference):
cell.contentview.backgroundcolor = [uicolor colorwithred:8.0f/255.0f green:210.0f/255.0f blue:11.0f/255.0f alpha:1.0f];
ios uitableview uibackgroundcolor
Comments
Post a Comment