Mark Rowe

Results 27 comments of Mark Rowe

Can you please share some code that reproduces the issue so we'll be able to verify that whatever fix we make addresses the problem you're encountering?

Sorry for the delay in responding, @TheNoim. The only networking that watchOS permits directly from the device is HTTP requests made via `NSURLSession`. Realm Platform's synchronization protocol is based on...

Presumably due to this: https://github.com/realm/realm-cocoa/blob/965c136486c1eb88a217327a76bc9701b9ad803f/build.sh#L1072-L1074

The predicate language is part of Apple's SDKs so we're not able to extend it as you suggest. It _would_ be possible to instead provide a value that can be...

Ah, so it is! I didn't see it mentioned when I re-skimmed Apple's Predicate Programming Guide, but now I see that it is in the list of functions in the...

Currently you can call [`-[RLMArray insertObject:atIndex:]`](https://realm.io/docs/objc/2.0.3/api/Classes/RLMArray.html#/c:objc%28cs%29RLMArray%28im%29insertObject:atIndex:) multiple times to insert multiple objects in the middle of an array. We can certainly consider adding `-insertObjects:atIndexes:` (and `-replaceObjectsAtIndexes:withObjects:`) for consistency with `NSMutableArray`....

Sorting via to-many relationships is more complicated than to-one because you're now sorting via a computed value rather than directly on a property of an object. This requires having some...

The Xcode projects in question hard-code the swift-3.0 framework path in their framework search paths. We need to update the version specified in the project and/or explicitly specify which version...

> ## Actual Results > It crashes Can you please share a crash log or backtrace and exception message from the crash?