123456789101112131415161718192021222324252627282930313233 |
- //
- // YOUPAINIMInputEmoticonButton.h
- // NIMKit
- //
- // Created by chris.
- // Copyright (c) 2015年 NetEase. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class NIMInputEmoticon;
- @protocol NIMEmoticonButtonTouchDelegate <NSObject>
- - (void)selectedEmoticon:(NIMInputEmoticon*)emoticon catalogID:(NSString*)catalogID;
- @end
- @interface YOUPAINIMInputEmoticonButton : UIButton
- @property (nonatomic, strong) NIMInputEmoticon *emoticonData;
- @property (nonatomic, copy) NSString *catalogID;
- @property (nonatomic, weak) id<NIMEmoticonButtonTouchDelegate> delegate;
- + (YOUPAINIMInputEmoticonButton*)youpaificonButtonWithData:(NIMInputEmoticon*)data catalogID:(NSString*)catalogID delegate:( id<NIMEmoticonButtonTouchDelegate>)delegate;
- - (void)youpaifonIconSelected:(id)sender;
- @end
|