12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- //
- // EMNotificationHelper.h
- // ChatDemo-UI3.0
- //
- // Created by XieYajie on 2019/1/10.
- // Copyright © 2019 XieYajie. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef NS_ENUM(NSInteger, EMNotificationModelStatus) {
- EMNotificationModelStatusDefault = 0,
- EMNotificationModelStatusAgreed,
- EMNotificationModelStatusDeclined,
- EMNotificationModelStatusExpired,
- };
- typedef NS_ENUM(NSInteger, EMNotificationModelType) {
- EMNotificationModelTypeContact = 0,
- EMNotificationModelTypeGroupInvite,
- EMNotificationModelTypeGroupJoin,
- };
- @interface EMNotificationModel : NSObject <NSCoding>
- @property (nonatomic, strong) NSString *sender;
- @property (nonatomic, strong) NSString *receiver;
- @property (nonatomic, strong) NSString *groupId;
- @property (nonatomic, strong) NSString *message;
- @property (nonatomic, strong) NSString *time;
- @property (nonatomic) EMNotificationModelStatus status;
- @property (nonatomic) EMNotificationModelType type;
- @property (nonatomic) BOOL isRead;
- @end
- @protocol EMNotificationsDelegate;
- @class EMMulticastDelegate;
- @interface EMNotificationHelper : NSObject <EMMultiDevicesDelegate, EMContactManagerDelegate, EMGroupManagerDelegate>
- @property (nonatomic, strong, readonly) NSString *fileName;
- @property (nonatomic, strong) NSMutableArray *notificationList;
- @property (nonatomic) BOOL isCheckUnreadCount;
- @property (nonatomic, readonly) NSInteger unreadCount;
- + (instancetype)shared;
- - (void)addDelegate:(id<EMNotificationsDelegate>)aDelegate;
- - (void)removeDelegate:(id<EMNotificationsDelegate>)aDelegate;
- //- (void)insertModel:(EMNotificationModel *)aModel;
- - (void)markAllAsRead;
- //- (NSInteger)getUnreadCount;
- - (void)archive;
- @end
- @protocol EMNotificationsDelegate <NSObject>
- @optional
- - (void)didNotificationsUpdate;
- - (void)didNotificationsUnreadCountUpdate:(NSInteger)aUnreadCount;
- @end
- NS_ASSUME_NONNULL_END
|