NIMKitEvent.h 772 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // NIMKitEvent.h
  3. // NIMKit
  4. //
  5. // Created by chris.
  6. // Copyright (c) 2015年 NetEase. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <NIMSDK/NIMSDK.h>
  10. #import "NIMMessageModel.h"
  11. @interface NIMKitEvent : NSObject
  12. @property (nonatomic,copy) NSString *eventName;
  13. @property (nonatomic,strong) NIMMessageModel *messageModel;
  14. @property (nonatomic,strong) id data;
  15. @property (nonatomic,strong)UIImageView *contentImage;
  16. @end
  17. extern NSString *const NIMKitEventNameTapContent;
  18. extern NSString *const NIMKitEventNameTapLabelLink;
  19. extern NSString *const NIMKitEventNameTapAudio;
  20. extern NSString *const NIMKitEventNameTapRobotLink;
  21. extern NSString *const NIMKitEventNameTapRobotBlock;
  22. extern NSString *const NIMKitEventNameTapRobotContinueSession;