YOUPAINIMInputEmoticonTabView.h 646 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // YOUPAINIMInputEmoticonTabView.h
  3. // NIMKit
  4. //
  5. // Created by chris.
  6. // Copyright (c) 2015年 NetEase. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class YOUPAINIMInputEmoticonTabView;
  10. @protocol NIMInputEmoticonTabDelegate <NSObject>
  11. - (void)tabView:(YOUPAINIMInputEmoticonTabView *)tabView didSelectTabIndex:(NSInteger) index;
  12. @end
  13. @interface YOUPAINIMInputEmoticonTabView : UIControl
  14. @property (nonatomic,strong) UIButton * sendButton;
  15. @property (nonatomic,weak) id<NIMInputEmoticonTabDelegate> delegate;
  16. - (void)youpaifselectTabIndex:(NSInteger)index;
  17. - (void)youpaifloadCatalogs:(NSArray*)emoticonCatalogs;
  18. @end