martijnwalraven / meteor-ios

Meteor iOS integrates native iOS apps with the Meteor platform (http://www.meteor.com) through DDP
MIT License
741 stars 82 forks source link

How to to get notified for specific collection changes? #119

Open jaddoescad opened 7 years ago

jaddoescad commented 7 years ago

I am trying to get notified when a collection changes.

I am using this to get notified:

    NotificationCenter.default.addObserver(self, selector: #selector(RoomObserver), name: NSNotification.Name.METDatabaseDidChange, object: Meteor.database.collection(withName: "Message")

The code above doesn't yield anything, any help would be greatly appreaciated