illyabusigin / CYRKeyboardButton

A drop-in keyboard button that mimics the look, feel, and functionality of the native iOS keyboard buttons
MIT License
351 stars 46 forks source link

replaced line 56 of CYRKeyboardButtonView.m #10

Open dstantwo opened 9 years ago

dstantwo commented 9 years ago

replaced line 56 of CYRKeyboardButtonView.m changed from: if (UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation)) { to : if ([UIScreen mainScreen].bounds.size.width > [UIScreen mainScreen].bounds.size.height) {

When used in an iOS keyboard extension, the original line causes an error on compiling: 'sharedApplication' is unavailable: not available on iOS (App Extension) - Use view controller based solutions where appropriate instead.

The new line still checks if the orientation is landscape, but sharedApplication is not used and compiles with no errors.

oaksoeshein commented 5 years ago

iphone x issue

keyboard is crashed due to memory issue when we use CRKeyboardButton