vote up 3 vote down star

I have a project that compiles with some warnings. It's an iPhone project that uses some methods on NSDate, that are seemingly not the headers of the iPhone SDK, but work flawlessly none the less. When I call these methods I get warnings like:

NSDate warnings

So how do I silence the warnings permanently, in order to tell XCode "it's OK, really."

Or how do I correct the warnings? This code works great on the device and Apple has already approved an app that uses these same methods, so surely I can get XCode to understand that the methods really are there.

flag

5 Answers

vote up 3 vote down check

You can write a short interface extension early in you .m file to suppress these warnings

Example:

@interface NSDate (SuppressSomWarnings)
- (void)dateWithNaturalLanguageString:(NSString*)_str;
@end
link|flag
vote up 0 vote down

Your code may work in the simulator but does it work on the phone?

The simulator uses the OS X Foundation framework which is a superset of what is available on the iPhone.

link|flag
vote up 3 vote down

I would very strongly advise you to not use these methods. Just because they are declared in Mac OS X's Foundation framework, does not stop them being private API on the iPhone. Apple would be well within their rights to discontinue your app from the store. Likewise, there's nothing to stop Apple tidying up Foundation a bit for an iPhone OS 2.2.2 or later release and removing those two methods, thereby breaking your app.

link|flag
vote up 0 vote down

Do you have the correct SDK configured? You might be liking against the newest version, but using old header files.

link|flag
Yep, my Foundation.framework is provided by the 2.2 SDK. – Squeegy Feb 16 at 8:40
vote up 1 vote down

It's strange, I do not get any warning when I type the same two lines... Did you correctly import the headers and frameworks into your project?

I see that they are defined in NSCalendateDate.h, which is in Foundation.framework.

Failing that, you can try and include the interface definitions directly into your code, e.g., at the top of your .m file, to see if that gets rid of the warnings. (See epatel's answer that came while I was writing this!)

link|flag
My Foundation.framework does not have that header file; only NSDate.h (which lacks these methods) and NSCalendar.h (which describes the NSCalendar class). To be clear, this is an iPhone project. I think the Cocoa headers define these methods just fine, but the UIKit headers do not. – Squeegy Feb 16 at 8:28
Same for me: iPhone project. I'm using the latest SDK for iPhone 2.2.1. It's not normal that this header file is missing, maybe you should try and reinstall xcode... – squelart Feb 16 at 11:11
it's seeming that way... Thanks for the sanity check. – Squeegy Feb 16 at 19:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.