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

91 Views Asked by At

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

1

There are 1 best solutions below

0
Tintin On BEST ANSWER

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.