¡@

Home 

2014/10/15 ¤U¤È 10:05:18

iphone Programming Glossary: commonclass

Accessing Method from other Classes Objective-C

http://stackoverflow.com/questions/1658433/accessing-method-from-other-classes-objective-c

@implementation ViewController2 Do Some awesome stuff.... CALL CommonMethod HERE @end File CommonClass @implementation commonClass void CommonMethod id sender So some awesome generic stuff... @end I feel like I need to #import the other file make an Object.. do that Thanks again iphone objective c class object methods share improve this question Option 1 @implementation commonClass void CommonMethod id sender note the sign So some awesome generic stuff... @end @implementation ViewController2 void do_something..... id sender note the sign So some awesome generic stuff... @end @implementation ViewController2 void do_something... commonClass CommonMethod @end Option 2 @implementation commonClass void CommonMethod id sender So some awesome generic stuff... @end..