We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab6920e commit 5faf395Copy full SHA for 5faf395
Source/SLKTextInputbar.m
@@ -117,6 +117,16 @@ - (void)layoutIfNeeded
117
[super layoutIfNeeded];
118
}
119
120
+// Compensate for layout bug in iOS 11 Beta 2
121
+- (void)layoutSubviews
122
+{
123
+ [super layoutSubviews];
124
+
125
+ [self bringSubviewToFront:self.textView];
126
+ [self bringSubviewToFront:self.rightButton];
127
+ [self bringSubviewToFront:self.leftButton];
128
+}
129
130
- (CGSize)intrinsicContentSize
131
{
132
return CGSizeMake(UIViewNoIntrinsicMetric, [self minimumInputbarHeight]);
0 commit comments