Audulus LLC
Audulus LLC
``` (lldb) po [iCloud sharedCloud].fileList ( ) ``` A search in `iCloud.m` shows that `fileList` and `previousQueryResults` are never updated.
The following code in iCloudDocument will only work for small data: ``` // Register the undo operation [self.undoManager setActionName:@"Data Change"]; [self.undoManager registerUndoWithTarget:self selector:@selector(setDocumentData:) object:oldData]; ``` If the data starts to...
One of the nice things about UIDocument is that it auto-saves automatically at appropriate times (see https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIDocument_Class/#//apple_ref/occ/instm/UIDocument/autosaveWithCompletionHandler:). iCloudDocumentSync uses its own UIDocument subclass, iCloudDocument, which seems to negate this advantage....
As far as I can tell, iCloudDocumentSync doesn't support file packages (NSFileWrapper).
I noticed the following line in the [documentation](https://github.com/philsquared/Catch/blob/master/docs/why-catch.md) > Implement test fixtures using Obj-C classes too (like OCUnit) This is perhaps wishful thinking, but does Catch integrate with XCTest? I'd...