UIScrollView+Content.m 400 Bytes
Newer Older
mei's avatar
mei committed
1
//
mei's avatar
mei committed
2 3
//  UIScrollView+Content.m
//  XFFruit
mei's avatar
mei committed
4
//
mei's avatar
mei committed
5
//  Created by Xummer on 15/6/8.
mei's avatar
mei committed
6 7 8
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

mei's avatar
mei committed
9
#import "UIScrollView+Content.h"
mei's avatar
mei committed
10

mei's avatar
mei committed
11
@implementation UIScrollView (Content)
mei's avatar
mei committed
12 13 14 15 16 17 18

- (void)setContentInsetTop:(CGFloat)top andBottom:(CGFloat)bottom {
    self.contentInset = UIEdgeInsetsMake(top, 0, bottom, 0);
    self.scrollIndicatorInsets = self.contentInset;
}

@end