meteor-ios
meteor-ios copied to clipboard
Meteor iOS integrates native iOS apps with the Meteor platform (http://www.meteor.com) through DDP
I'm getting this error when running on an iPhone 11 with iOS 13.3.1 and Xcode 11.3.1. Strangely, running it on the Simulator works fine. ``` dyld: Library not loaded: @rpath/InflectorKit.framework/InflectorKit...
Hi, I am able to call methods to server and get the data. But how should I listen to the subscriptions? When server sends an update, do we need to...
It doesn't look like.
Does anyone know how I could pin the web socket connection, the handshake, to a specific certificate issuer ?
I found method Meteor.logout but i dont know what i should write to METLogOutCompletionHandler
I haven't seen any update on this project for a long time. I found problems when connecting to Meteor socket on version 1.5. May I ask any alternative to keep...
Just curious if there's a way of using meteor methods for database queries or we have to use the insecure package?
I've defined a method stub where I'd like to update the `count` field optimistically and use latency compensation. ``` NSUinteger count = 10; // define stub [Meteor defineStubForMethodWithName:@"createNote" usingBlock:^id(NSArray *parameters)...
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...
We are trying to implement the Meteor-iOS framework in Swift and are attempting to translate from Objective-C. How can we get notified when changes occur to the collection? For some...