Hi There;
I
am attempting to build a basic 3-tiered architecture for an app. I
come from a .NET background and am new to Objective-C and iPhone
development. I am looking for a technique that will allow me track the
state of a class in case of a specific error or failure. In .NET one
can create class properties which can be set by the class itself. This
technique works great for identifying if a database connection fails or
if section of code can't connect to a web service. When I attempt to
do the same thing in Xcode I get the warning message:
"warning:instance variable accessed in class method"
Does anyone have any techniques / solutions for accomplishing what I am looking to do?
Thanks in advance