• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Leopard: fileExtensionsFromType: deprecation breaks saving with extension
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Leopard: fileExtensionsFromType: deprecation breaks saving with extension


  • Subject: Re: Leopard: fileExtensionsFromType: deprecation breaks saving with extension
  • From: "Adam R. Maxwell" <email@hidden>
  • Date: Fri, 9 Nov 2007 20:33:03 -0800


On Nov 9, 2007, at 7:55 PM, email@hidden wrote:

On 平成 19/11/10, at 6:06, Adam R. Maxwell wrote:


On Friday, November 09, 2007, at 12:49PM, "Fritz Anderson" <email@hidden > wrote:


When I try to save my application's document, the document does not
get the proper extension. An extensive diagnostic (below) appears in
the debugger console. The document, including type, UTI, and
extension, is declared properly in the Properties tab of the Target
Info. (Or at least, properly as of Tiger, and to the full extent that
window permits.)


I also cannot open old documents that had the correct extension. (Yes,
saving worked before, and I can't determine what went wrong.)


My question, in brief, is: How do I get the behavior I believe I am
specifying?

The easiest thing to do is delete LSItemContentTypes from your Info.plist. Alternately, compiling against the 10.4 SDK should give you the 10.4 behavior. For those of us who added LSItemContentTypes and tried to use UTIs in Tiger, the situation in NSDocument/NSDocumentController sucks; I finally just removed LSItemContentTypes.


Personally I think the number of deprecated methods in NSDocument/ NSDocumentController is out of control, since your open/save/export code paths change depending on OS, SDK, and existing overrides.

...and lest this grumpiness be misinterpreted, I prefer working with UTIs over other identifiers, and the changes to UTIs are great for 10.5-only apps. I'm just starting to wish there was a new NSDocument class instead of one with 20 deprecated methods that sometimes get used.



The message says I should declare my UTI in
UTExportedTypeDeclarations. But Xcode does not provide a UI for
creating or editing that list.

You have to hand-edit Info.plist to add it, as far as I know.
Well, I hand-edtited it and still had the same problem.
I just dumped (deleted) the UTI and all worked fine.
Where did you place UTExportedTypeDeclarations in the plist file btw?

At the end of the file, not that it matters in the dictionary :). It looks like this:


<key>UTExportedTypeDeclarations</key>
<array>
	<dict>
		<key>UTTypeConformsTo</key>
		<array>
			<string>public.plain-text</string>
		</array>
		<key>UTTypeDescription</key>
		<string>BibTeX Database</string>
		<key>UTTypeIconFile</key>
		<string>bibDocIcon.icns</string>
		<key>UTTypeIdentifier</key>
		<string>net.sourceforge.bibdesk.bib</string>
		<key>UTTypeTagSpecification</key>
		<dict>
			<key>public.filename-extension</key>
			<array>
				<string>bib</string>
			</array>
		</dict>
	</dict>
	<dict>
	<!-- another type here... -->
	</dict>
</array>_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: Leopard: fileExtensionsFromType: deprecation breaks saving with extension
      • From: Andre <email@hidden>
References: 
 >Leopard: fileExtensionsFromType: deprecation breaks saving with extension (From: Fritz Anderson <email@hidden>)
 >Re: Leopard: fileExtensionsFromType: deprecation breaks saving with extension (From: "Adam R. Maxwell" <email@hidden>)
 >Re: Leopard: fileExtensionsFromType: deprecation breaks saving with extension (From: email@hidden)

  • Prev by Date: Re: Smart way to get "etched" borders in Leopard
  • Next by Date: Re: drawing an array of pixels to the screen
  • Previous by thread: Re: Leopard: fileExtensionsFromType: deprecation breaks saving with extension
  • Next by thread: Re: Leopard: fileExtensionsFromType: deprecation breaks saving with extension
  • Index(es):
    • Date
    • Thread