You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
445 B

5 years ago
  1. //
  2. // SlackTextViewController
  3. // https://github.com/slackhq/SlackTextViewController
  4. //
  5. // Copyright 2014-2016 Slack Technologies, Inc.
  6. // Licence: MIT-Licence
  7. //
  8. #import "SLKInputAccessoryView.h"
  9. #import "SLKUIConstants.h"
  10. @implementation SLKInputAccessoryView
  11. #pragma mark - Super Overrides
  12. - (void)willMoveToSuperview:(UIView *)newSuperview
  13. {
  14. if (!SLK_IS_IOS9_AND_HIGHER) {
  15. _keyboardViewProxy = newSuperview;
  16. }
  17. }
  18. @end