EmojiScrollView.m 408 B

1234567891011121314151617181920212223
  1. //
  2. // EmojiScrollView.m
  3. // BuguLive
  4. //
  5. // Created by 朱庆彬 on 2017/8/15.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import "EmojiScrollView.h"
  9. @implementation EmojiScrollView
  10. - (instancetype)initWithFrame:(CGRect)frame
  11. {
  12. if (self = [super initWithFrame:frame])
  13. {
  14. self.pagingEnabled = YES;
  15. self.showsHorizontalScrollIndicator = NO;
  16. }
  17. return self;
  18. }
  19. @end