IBTUIScrollView.h 445 Bytes
//
//  IBTUIScrollView.h
//  XFFruit
//
//  Created by Xummer on 4/13/15.
//  Copyright (c) 2015 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol IBTInputViewHandleDelegate;
@interface IBTUIScrollView : UIScrollView

@property (assign, nonatomic) BOOL bHandleKeyboard;
@property (weak, nonatomic) id <IBTInputViewHandleDelegate> m_inputHandleDelegate;

- (void)setContentInsetTop:(CGFloat)top andBottom:(CGFloat)bottom;

@end