Skip to content

Instantly share code, notes, and snippets.

@palaniraja
Created October 25, 2014 06:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save palaniraja/4f84453cb9331db708ac to your computer and use it in GitHub Desktop.
Save palaniraja/4f84453cb9331db708ac to your computer and use it in GitHub Desktop.
Custom input view issue with iOS8 and external keyboard
- (UIView *)inputAccessoryView{
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8) {
return levelinputView.view;
}
else{
return nil;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment