|
//
// TPKeyboardController.h
// ThePaperDemo
//
// Created by scar1900 on 14/12/4.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
@interface TPKeyboardController : TPHttpController<UITextFieldDelegate>
/**
* 隐藏键盘
*/
- (void)closeKeyBoard;
@property(nonatomic, strong)UIScrollView *keyboardView;
@property(nonatomic, assign)CGFloat responderHeight;
@property(nonatomic, assign)CGFloat keyboardOffset;
@end
|