How do I call an Objective C function?
        Posted  
        
            by riteshkumar1905
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by riteshkumar1905
        
        
        
        Published on 2010-04-13T09:50:34Z
        Indexed on 
            2010/04/13
            10:02 UTC
        
        
        Read the original article
        Hit count: 480
        
objective-c
How to call a 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 from where I need it?
© Stack Overflow or respective owner