-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotificationManager.swift
executable file
·51 lines (40 loc) · 1.31 KB
/
NotificationManager.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// NotificationManager.swift
// gcmapp
//
// Created by MOHIT on 19/08/15.
// Copyright (c) 2015 Expidev. All rights reserved.
//
import Foundation
class NotificationManager {
private var observerTokens: [AnyObject] = []
let mainQueue = NSOperationQueue.mainQueue()
deinit {
deregisterAll()
}
func deregisterAll() {
for token in observerTokens {
NSNotificationCenter.defaultCenter().removeObserver(token)
}
observerTokens = []
}
func registerObserver(name: String!, block: (NSNotification! -> Void)) {
let newToken = NSNotificationCenter.defaultCenter().addObserverForName(name, object: nil, queue: nil) {note in
block(note)
}
observerTokens.append(newToken)
}
func registerObserver(name: String!, forObject object: AnyObject!, block: (NSNotification! -> Void)) {
let newToken = NSNotificationCenter.defaultCenter().addObserverForName(name, object: object, queue: mainQueue) {note in
block(note)
}
observerTokens.append(newToken)
}
}
/* how to use
private let notificationManager = NotificationManager()
override init() {
notificationManager.registerObserver(MyNotificationItemAdded) { note in
//println("item added!")
}
*/