I know in Objective-C and during programming on iOS SDK, pointers are used all the way around.
What is the best way to learn whether a pointer was initialized or not in Objective-C? Check if it is nil?
CSomeClass *p;
//....
if(p==nil)
??
PS: in other words what are the default values in Objective-C for variables? Pointers?
UPDATE
Actually I have the following situation.
Imagine I have some pointers Pointer *p1, Pointer *p2 in some class. Then imagine someone calls this class, i.e., it is a view and must be displayed. Then in my class I want to check that if none had initialised p1 and p2 (e.g., p1 == nil? p2==nil?) I want to display empty text.
Are these some sort of comparisons done in Objective-C? For example, what are the default values of p1 and p2 if they were not initialised? Do values by default get initialized to something in Objective-C? Maybe to null?

nil– NSAddict Dec 25 '12 at 10:49