meteor-ios icon indicating copy to clipboard operation
meteor-ios copied to clipboard

Meteor iOS integrates native iOS apps with the Meteor platform (http://www.meteor.com) through DDP

Results 68 meteor-ios issues
Sort by recently updated
recently updated
newest added

How would i go about searching records in a project based on the code from todos example? For instance trying to search core data: ``` swift func updateSearchResultsForSearchController(searchController: UISearchController) {...

I can't find in the package or docs any place to loginWithUsername how can I login with username not email?

I wasn't able to get the examples to work on ios 9 with xcode7.. I created a fork and got it to work here: https://github.com/edwardvalentini/meteor-ios/tree/xcode7 I was going to submit...

App crashes when running on iPhone with the message: ``` dyld: Library not loaded: @rpath/InflectorKit.framework/InflectorKit Referenced from: /private/var/mobile/Containers/Bundle/Application/***** Reason: no suitable image found. Did find: /private/var/mobile/Containers/Bundle/Application/*****/Frameworks/InflectorKit.framework/InflectorKit: mach-o, but wrong architecture...

Adding a lot of fine grained notifications to delegate. This makes it much easier to coordinate application state based on the overall state of meteor rather than trying to cobble...

Otherwise `NSManagedObjectContext` will crash when merging relationship change notifications.

I tried setting the userInfo fieldName ### Atttributes | Attribute | Type | | --- | --- | | tableId | String | ### UserInfo | key | value |...

When not using custom method calls, does Meteor iOS rely on the developer using Meteor's Allow Deny functions for secure insert, update, and remove functions when using Meteor iOS with...

I get this error when I run the project (xcworkspace), from what I can understand it is something wrong with the CD model? ``` 2015-06-19 14:22:56.660 Todos[532:117700] CoreData: error: Property...

I have a model: ``` Swift class Update: MeteorCoreDataDocument { @NSManaged var createdAt: NSDate @NSManaged var endedAt: NSDate? @NSManaged var createdBy: String @NSManaged var isAvailable: Bool @NSManaged var update: Update?...