mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-13 01:51:40 +08:00
27 lines
635 B
Objective-C
Executable File
27 lines
635 B
Objective-C
Executable File
//
|
|
// SlackTextViewController
|
|
// https://github.com/slackhq/SlackTextViewController
|
|
//
|
|
// Copyright 2014-2016 Slack Technologies, Inc.
|
|
// Licence: MIT-Licence
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class SLKInputAccessoryView;
|
|
|
|
@protocol SLKInputAccessoryViewFrameDelegate <NSObject>
|
|
|
|
- (void)accessoryView:(SLKInputAccessoryView *)accessoryView didChangeFrame:(CGRect)frame;
|
|
|
|
@end
|
|
|
|
@interface SLKInputAccessoryView : UIView
|
|
|
|
/* The system keyboard view used as reference. */
|
|
@property (nonatomic, weak, readonly) UIView *_Nullable keyboardViewProxy;
|
|
|
|
@property (nonatomic, weak) id<SLKInputAccessoryViewFrameDelegate> frameDelegate;
|
|
|
|
@end
|