Hi,
my question is the follow: i have an objective-c class with many
methods,
how can i split those functions in many .m files???
ex. i have tried this unsuccessfully :-(
- foo.h -
@interface foo
-(void) func_a;
-(void) func_b;
@end
- foo_a.m -
#import "foo.h"
@implementation foo
-(void) func_a
{
bla, bla, bla;
}
@end
- foo_b.m -
#import "foo.h"
@implementation foo
-(void) func_b
{
bla, bla, bla;
}
@end
Thanks for your help,
Federico
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Objc-language mailing list (
Objc-language@list...)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/objc-language/subscriber%40opensubscriber.com
This email sent to
subscriber@open...
opensubscriber is not affiliated with the authors of this message nor responsible for its content.