I have a UITableView with a view in the title. This view has a striped background and contains a UILabel. I want UILabel text to look like section heading text. How can I achieve this?
This worked for me:
label.font = [UIFont boldSystemFontOfSize:label.font.pointSize]; label.textColor = [UIColor darkGrayColor]; label.shadowColor = [UIColor whiteColor]; label.shadowOffset = CGSizeMake(0.0, 1.0);
Try changing the following:
label.shadowColor = [UIColor blackColor]; label.shadowOffset = CGSizeMake(0.0, 1.0);
Source: https://habr.com/ru/post/1310804/More articles:https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1310799/best-means-to-store-data-locally-when-offline&usg=ALkJrhgCQvjPSg1Lwq6YHouEBaTX4GLQTgHow to password protect a page using Wicket? - wicketHow to get Perl CGI script coverage code when running Selenium? - perlMS Access (Jet) Transactions, Workspaces - ms-accessCan I get Perl Devel :: Cover to generate a coverage report if I kill the assembly build process before it is complete? - perlHow can I print directly to the printer using jasper and grails reports? - html53x3 matrix sobel diagonal operator - matrixReturning structures to registers - ARM ABI in GCC - cHow to open print dialog after creating PDF? - javascriptDetermining jQuery versions using WordPress? - jqueryAll Articles