Expose scrollView and pageControl

This commit is contained in:
isaced 2015-06-16 15:51:55 +08:00
parent 5b6e21e2e9
commit 602a00b570
2 changed files with 10 additions and 10 deletions

View File

@ -20,6 +20,16 @@
*/
@property (nonatomic, assign) id<ISEmojiViewDelegate> delegate;
/**
* Emoji container used to store all the elements
*/
@property (nonatomic, strong) UIScrollView *scrollView;
/**
* UIPageControl for next page
*/
@property (nonatomic, strong) UIPageControl *pageControl;
@end
/**

View File

@ -19,16 +19,6 @@ static const CGFloat EmojiFontSize = 32;
*/
@property (nonatomic, strong) NSArray *emojis;
/**
* Emoji container used to store all the elements
*/
@property (nonatomic, strong) UIScrollView *scrollView;
/**
* UIPageControl for next page
*/
@property (nonatomic, strong) UIPageControl *pageControl;
@end
@implementation ISEmojiView