I have a table view in a grouped style. When I set the background color of the table to clear the color, I see dark black corners around the table. Is there a way to solve this problem and remove those dark corners?
Any help would be appreciated.
Along with using clearColor use the following:
clearColor
[tableView setBackgroundView:nil]; [tableView setBackgroundColor:[UIColor clearColor]]; [tableView setOpaque:NO];
You can set the UIView and set it to pure color. This works for me.
UIView *backView = [[[UIView alloc] initWithFrame:CGRectZero] autorelease]; backView.backgroundColor = [UIColor clearColor]; cell.backgroundView = backView;
Source: https://habr.com/ru/post/1336096/More articles:Order and Grouping in Mangoids - mongodbContext switch in interrupt handlers - linuxhttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1336093/how-to-write-a-command-line-c-program-that-posts-to-twitter&usg=ALkJrhgcxzOSJjU-XmtoIVyjmI1bL9q0PwAre indexes really needed in a data warehouse? - google-app-engineNSNotification addObserver: someOtherClass - iphoneHow to check that a string contains only English - c #How to add a hidden field to a form element on the main page - jqueryHow to add / link to .jar files in your project when you don't have an IDE - javaDoes this MVC code need refactoring or not? - phpWhat is MASM? which we usually use to study assembler code? - assemblyAll Articles