We are using the below test code to create a UIDocumentInteractionController. We are then setting the Name property to "Hello World.docx" as a test. According to the Apple documentation (http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIDocumentInteractionController_class/Reference/Reference.html), setting this property should change the display name of the document when it is received by the other app (e.g. Pages). However, in the below case it is using the ORIGINAL file name, not the overridden file name set in the Name property.
Is this a Monotouch bug? NSUrl fileUrl = NSUrl.FromFilename(filePath); DocInteractionController = UIDocumentInteractionController.FromUrl(fileUrl); DocInteractionController.Name = "Hello World.docx"; Any help on this would be much appreciated. -- View this message in context: http://monotouch.2284126.n4.nabble.com/UIDocumentInteractionController-is-ignoring-the-Name-property-tp4657970.html Sent from the MonoTouch mailing list archive at Nabble.com. _______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
