'Keyboard's globe button (🌐) was disappeared, iOS 15

when updated to iOS 15 , my app got this issue. Keyboard's globe button (🌐 at left bottom corner) was disappeared, but we could click it.

Does anyone have an idea of what could be happening here?

enter image description here



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