Hello MacRumors,
Here's my deal: I have Class "one" and Class "two". Class one has an IBAction which does soemthing, and I'd like to be able to call that method from class two. I've tried these things:
It either crashes or doesn't work at all. I have also imported class one's header file at the top of the implementation of class two. Help would be much appreciated!
Thanks.
Here's my deal: I have Class "one" and Class "two". Class one has an IBAction which does soemthing, and I'd like to be able to call that method from class two. I've tried these things:
Code:
one *theClass;
[theClass theMethod:nil];
Code:
[theClass theMethod:nil];
It either crashes or doesn't work at all. I have also imported class one's header file at the top of the implementation of class two. Help would be much appreciated!
Thanks.