Skip to content

Instantly share code, notes, and snippets.

View MinhNguyenVan's full-sized avatar

MinhNV MinhNguyenVan

View GitHub Profile
@MinhNguyenVan
MinhNguyenVan / UIButton+VerticalLayout.m
Last active February 27, 2018 07:36
UIButton center Image and Text Vertically
@interface UIButton (VerticalLayout)
- (void)centerVerticallyWithPadding:(float)padding;
- (void)centerVertically;
@end
@implementation UIButton (VerticalLayout)
- (void)centerVerticallyWithPadding:(float)padding
- (void)disableKeyboardScroll
{
self.webView.scrollView.scrollEnabled = NO;
self.webView.scrollView.delegate = self;
}
- (void)scrollViewDidScroll:(UIScrollView *)scrollView
{
self.webView.scrollView.bounds = self.webView.bounds;
}