diff --git a/ISEmojiView/ISEmojiView.h b/ISEmojiView/ISEmojiView.h index 95753c8..0efae4e 100644 --- a/ISEmojiView/ISEmojiView.h +++ b/ISEmojiView/ISEmojiView.h @@ -20,6 +20,16 @@ */ @property (nonatomic, assign) id delegate; +/** + * Emoji container used to store all the elements + */ +@property (nonatomic, strong) UIScrollView *scrollView; + +/** + * UIPageControl for next page + */ +@property (nonatomic, strong) UIPageControl *pageControl; + @end /** diff --git a/ISEmojiView/ISEmojiView.m b/ISEmojiView/ISEmojiView.m index 0639a19..450a9f9 100644 --- a/ISEmojiView/ISEmojiView.m +++ b/ISEmojiView/ISEmojiView.m @@ -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