This is really strange. All of the sudden my xcode project is showing warnings for almost all properties I have declared.
I'm building an app for Mac OS with Xcode 5.1.1.
Most properties I'm not specifying any attributes as I'm aware the default is a strong reference. But now all of the sudden I get warnings for everything.
What would I have done to trigger this? Up until a few minutes ago these warnings would never show up. I don't want to have to declare the attributes for every property - only the ones I don't want to be strong references.
It doesn't give me warnings for properties that are implicitly assign or atomic.
I've attached a screenshot.
Any ideas? Is there a build setting that accidentally got turned on?
Could there have been something in a single file that started triggering all these warnings? Like some kind of circular reference?
Edit: This is an ARC project.
Edit: I found the source of the problem: I have a non-arc file (-fno-objc-arc) including an arc file. Anyone know how to handle this properly?