Respond to CR.

// FREEBIE
This commit is contained in:
Matthew Chen 2017-10-19 22:37:17 -04:00
parent f28abbc2a1
commit c7097db939
2 changed files with 2 additions and 3 deletions

View File

@ -8,6 +8,8 @@ NS_ASSUME_NONNULL_BEGIN
@interface OWSViewController : UIViewController
@property (nonatomic) BOOL shouldIgnoreKeyboardChanges;
// We often want to pin one view to the bottom guide
// of a view controller BUT adjust its location upward
// if the keyboard appears.
@ -15,8 +17,6 @@ NS_ASSUME_NONNULL_BEGIN
// Use this method in lieu of autoPinToBottomLayoutGuideOfViewController:
- (void)autoPinViewToBottomGuideOrKeyboard:(UIView *)view;
- (void)setShouldIgnoreKeyboardChanges:(BOOL)value;
@end
NS_ASSUME_NONNULL_END

View File

@ -11,7 +11,6 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, weak) UIView *bottomLayoutView;
@property (nonatomic) NSLayoutConstraint *bottomLayoutConstraint;
@property (nonatomic) BOOL shouldIgnoreKeyboardChanges;
@end