mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-03-25 09:25:47 +00:00
19 lines
489 B
Objective-C
19 lines
489 B
Objective-C
//
|
|
// NotificationToSelectorMap.h
|
|
// Blog
|
|
//
|
|
// Created by Sami Samhuri on 2015-06-29.
|
|
// Copyright © 2015 Guru Logic Inc. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface NotificationToSelectorMap : NSObject
|
|
|
|
@property (nonatomic, copy) NSDictionary *notificationNameToSelectorNameMap;
|
|
|
|
- (instancetype)initWithNotificationMap:(nonnull NSDictionary *)notificationMap;
|
|
- (void)addObserver:(NSObject *)observer;
|
|
- (void)removeObserver:(NSObject *)observer;
|
|
|
|
@end
|