//// STEmoji.h// STEmojiKeyboard//// Created by zhenlintie on 15/5/29.// Copyright (c) 2015年 sTeven. All rights reserved.//#import <Foundation/Foundation.h>typedefNS_ENUM(NSUInteger,STEmojiType){// emoji show typeSTEmojiTypePeople=0,STEmojiTypeFlower,STEmojiTypeBell,STEmojiTypeVehicle,STEmojiTypeNumber,};@interfaceSTEmoji:NSObject@property(assign,nonatomic)STEmojiTypetype;@property(strong,nonatomic)NSString*title;@property(strong,nonatomic)NSArray*emojis;@end@interfaceSTEmoji(Generate)+(NSArray*)allEmojis;@end