On Mar 20, 2012, at 9:20 PM, Shane Stanley wrote: > This has come up again. I have a customer who has upgraded to Lion from Snow > Leopard, and there are no header files (which my app uses) in his > /System/Library/Frameworks/. But there is no option to reinstall Xcode with > Xcode 4.3.
You can't rely on headers being present in the actual system frameworks. > Should I be trying to use the header files in the Xcode bundle instead? Yes. If your app needs to locate framework headers at runtime for some reason, it should probably do something like running "xcode-select -print-path" via NSTask, to find the Developer folder, then locating the SDK relative to that. —Jens _______________________________________________ Cocoa-dev mailing list ([email protected]) 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: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
