[[NSDocumentController sharedDocumentController] openDocumentWithContentsOfURL:url display:YES];
[[NSDocumentController sharedDocumentController] openDocumentWithContentsOfURL:url display:YES];
- Subject: [[NSDocumentController sharedDocumentController] openDocumentWithContentsOfURL:url display:YES];
- From: "Simson L.Garfinkel" <email@hidden>
- Date: Fri, 25 Jan 2002 20:23:08 -0500
Has anybody been able to get NSDocumentController
openDocumentWithContentsOfURL:url display:YES] to work?
I have a url that causes and HTTP GET to be executed with this line of
code:
[NSData dataWithContentsOfURL:url];
but this line of code doesn't result in any HTTP action:
[ndc openDocumentWithContentsOfURL:url display:YES];
Any hints?