Problem occurs when we are trying to write metadata of object into pastboard at IMBObjectViewController.m
(NSUInteger) writeItemsAtIndexes:(NSIndexSet)inIndexes toPasteboard:(NSPasteboard)inPasteboard function
{
...
// Keep all 3 items in sync, so the arrays are of the same length.
[fileTypes addObject:type];
[titles addObject:object.name];
[metadatas addObject:object.metadata];
...
wasSet = [inPasteboard setPropertyList:metadatas forType:kIMBPublicMetadataListPasteboardType];
...
}
Main problem is CFURL which, as I understood, coming from flickerAPI and i think best solution will be to add some sort of converter inside of IMBFlickrNode when we receive any metadata.
I recently found some exception in iMedia during drag of image from flicker. Error log and exceptions are:
Problem occurs when we are trying to write metadata of object into pastboard at IMBObjectViewController.m
... wasSet = [inPasteboard setPropertyList:metadatas forType:kIMBPublicMetadataListPasteboardType]; ... }