emojiViewController.h 728 B

12345678910111213141516171819202122232425262728
  1. //
  2. // emojiViewController.h
  3. //
  4. // Created by daxiong on 13-11-27.
  5. // Copyright (c) 2013年 Reese. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "FaceViewController.h"
  9. #import "FavoritesVC.h"
  10. #import "EmojiPackgeViewController.h"
  11. @class menuImageView;
  12. @class gifViewController;
  13. @interface emojiViewController : UIView{
  14. menuImageView* _tb;
  15. FaceViewController* _faceView;
  16. gifViewController* _gifView;
  17. }
  18. @property (nonatomic, weak) id delegate;
  19. @property (nonatomic, strong) FaceViewController* faceView;
  20. @property (nonatomic, strong) FavoritesVC *favoritesVC;
  21. @property (nonatomic, strong) NSArray *emojiDataArray;
  22. @property (nonatomic, assign) NSUInteger selectedIndex;
  23. -(void)selectType:(int)n;
  24. @end