'Keyboard's globe button (🌐) was disappeared, iOS 15
Solution 1:[1]
tl;dr: I found method setFrame: in a category of UIImageView like this.
-(void)setFrame:(CGRect)frame{
xxxxxx;
if (yyyyyy) {
zzzzzz;
}
[super setFrame: frame];
}
Remove this category, globe button was back.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Tintin |