//// IBTUIScrollView.m// XFFruit//// Created by Xummer on 4/13/15.// Copyright (c) 2015 Xummer. All rights reserved.//#import "IBTUIScrollView.h"#import "IBTInputViewHandleDelegate.h"@implementationIBTUIScrollView-(void)touchesBegan:(NSSet*)toucheswithEvent:(UIEvent*)event{[supertouchesBegan:toucheswithEvent:event];if(_bHandleKeyboard){if([self.m_inputHandleDelegaterespondsToSelector:@selector(handleInputView:)]){[self.m_inputHandleDelegatehandleInputView:self];}else{[self.windowendEditing:YES];}}}-(void)setContentInsetTop:(CGFloat)topandBottom:(CGFloat)bottom{self.contentInset=UIEdgeInsetsMake(top,0,bottom,0);self.scrollIndicatorInsets=self.contentInset;}@end