12345678910111213141516171819202122232425262728 |
- //
- // emojiViewController.h
- //
- // Created by daxiong on 13-11-27.
- // Copyright (c) 2013年 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FaceViewController.h"
- #import "FavoritesVC.h"
- #import "EmojiPackgeViewController.h"
- @class menuImageView;
- @class gifViewController;
- @interface emojiViewController : UIView{
- menuImageView* _tb;
- FaceViewController* _faceView;
- gifViewController* _gifView;
- }
- @property (nonatomic, weak) id delegate;
- @property (nonatomic, strong) FaceViewController* faceView;
- @property (nonatomic, strong) FavoritesVC *favoritesVC;
- @property (nonatomic, strong) NSArray *emojiDataArray;
- @property (nonatomic, assign) NSUInteger selectedIndex;
- -(void)selectType:(int)n;
- @end
|