@@ -76,7 +76,7 @@ @implementation SLKTextViewController
76
76
@synthesize tableView = _tableView;
77
77
@synthesize collectionView = _collectionView;
78
78
@synthesize scrollView = _scrollView;
79
- @synthesize typingIndicatorCustomView = _typingIndicatorCustomView ;
79
+ @synthesize typingIndicatorProxyView = _typingIndicatorProxyView ;
80
80
@synthesize textInputbar = _textInputbar;
81
81
@synthesize autoCompletionView = _autoCompletionView;
82
82
@synthesize autoCompleting = _autoCompleting;
@@ -322,24 +322,24 @@ - (SLKTextInputbar *)textInputbar
322
322
return _textInputbar;
323
323
}
324
324
325
- - (UIView <SLKTypingIndicatorProtocol> *)typingIndicatorCustomView
325
+ - (UIView <SLKTypingIndicatorProtocol> *)typingIndicatorProxyView
326
326
{
327
- if (!_typingIndicatorCustomView )
327
+ if (!_typingIndicatorProxyView )
328
328
{
329
329
Class class = self.typingIndicatorViewClass ? : [SLKTypingIndicatorView class ];
330
330
331
- _typingIndicatorCustomView = [[class alloc ] init ];
332
- _typingIndicatorCustomView .translatesAutoresizingMaskIntoConstraints = NO ;
333
- _typingIndicatorCustomView .hidden = YES ;
331
+ _typingIndicatorProxyView = [[class alloc ] init ];
332
+ _typingIndicatorProxyView .translatesAutoresizingMaskIntoConstraints = NO ;
333
+ _typingIndicatorProxyView .hidden = YES ;
334
334
335
- [_typingIndicatorCustomView addObserver: self forKeyPath: NSStringFromSelector (@selector (isVisible )) options: NSKeyValueObservingOptionNew context: nil ];
335
+ [_typingIndicatorProxyView addObserver: self forKeyPath: NSStringFromSelector (@selector (isVisible )) options: NSKeyValueObservingOptionNew context: nil ];
336
336
}
337
- return _typingIndicatorCustomView ;
337
+ return _typingIndicatorProxyView ;
338
338
}
339
339
340
340
- (SLKTypingIndicatorView *)typingIndicatorView
341
341
{
342
- return (SLKTypingIndicatorView *)self.typingIndicatorCustomView ;
342
+ return (SLKTypingIndicatorView *)self.typingIndicatorProxyView ;
343
343
}
344
344
345
345
- (BOOL )isExternalKeyboardDetected
@@ -1967,8 +1967,8 @@ - (void)dealloc
1967
1967
_textInputbar = nil ;
1968
1968
_textViewClass = nil ;
1969
1969
1970
- [_typingIndicatorCustomView removeObserver: self forKeyPath: NSStringFromSelector (@selector (isVisible ))];
1971
- _typingIndicatorCustomView = nil ;
1970
+ [_typingIndicatorProxyView removeObserver: self forKeyPath: NSStringFromSelector (@selector (isVisible ))];
1971
+ _typingIndicatorProxyView = nil ;
1972
1972
_typingIndicatorViewClass = nil ;
1973
1973
1974
1974
_registeredPrefixes = nil ;
0 commit comments