I have a class method which takes an Array as the parameter
+(void)classMethod:(NSArray*)array;
A message is being sent to this method from an outside ViewController with the value of the array.
[ViewController classMethod:ValueofArray]
Now i want to access the value of that array from an instance method in the same ViewController as the Class method
-(void)instanceMethod;
How is that possible ?