12345678910111213141516171819202122232425262728293031323334 |
- //
- // YOUPAINIMInputEmoticonTabView.h
- // NIMKit
- //
- // Created by chris.
- // Copyright (c) 2015年 NetEase. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class YOUPAINIMInputEmoticonTabView;
- @protocol NIMInputEmoticonTabDelegate <NSObject>
- - (void)tabView:(YOUPAINIMInputEmoticonTabView *)tabView didSelectTabIndex:(NSInteger) index;
- @end
- @interface YOUPAINIMInputEmoticonTabView : UIControl
- @property (nonatomic,strong) UIButton * sendButton;
- @property (nonatomic,weak) id<NIMInputEmoticonTabDelegate> delegate;
- - (void)youpaifselectTabIndex:(NSInteger)index;
- - (void)youpaifloadCatalogs:(NSArray*)emoticonCatalogs;
- @end
|