Call the function
- by riteshkumar1905
How to call the function in Objective-c.
for Example:-
I define the function in header (.h file):-
-(void)abc
and implement this function in implementation file( .m file):-
-(void)abc
{
//.....
///....
}
now how would i call this function on that place where i need it..?????