1
1
mirror of https://github.com/VKCOM/vk-ios-sdk.git synced 2024-09-11 06:45:37 +03:00

fix iOS 13 Dark Mode ShareDialog text color

This commit is contained in:
Mahutin Alexei 2020-01-14 16:19:16 +03:00
parent e551342c92
commit e539b7ff43

View File

@ -691,6 +691,7 @@ static const CGFloat kAttachmentsViewSize = 100.0f;
_textView = [[VKPlaceholderTextView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, 36)];
_textView.backgroundColor = [UIColor clearColor];
_textView.textColor = [UIColor blackColor];
_textView.autoresizingMask = UIViewAutoresizingFlexibleWidth;
#pragma clang diagnostic push
#pragma ide diagnostic ignored "UnavailableInDeploymentTarget"