Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 265773
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T22:47:56+00:00 2026-05-11T22:47:56+00:00

I’m making a simple program in Objective-C. It has one class with a lot

  • 0

I’m making a simple program in Objective-C. It has one class with a lot of methods. I’d just like to put the methods in another file… so I could move the following

- (void) myfunc1 {...}
- (void) myfunc2 {...}
// more functions

to another file and replace the above w/ something like

#include "myNewFile.something"

I’m fine w/ putting the #include (or whatever) statement just right in the original file.

How can I do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T22:47:56+00:00Added an answer on May 11, 2026 at 10:47 pm

    You’ll need to split your methods in to different “categories,” which each get their own h and m files. You’ll also need an h and m file for the class itself. Here’s a simple little example that I think will show you what you need to do.

    TestClass.h

    #import <Cocoa/Cocoa.h>
    @interface TestClass : NSObject {
    }
    @end
    

    TestClass.m

    #import "TestClass.h"
    @implementation TestClass
    @end
    

    TestClass+Category1.h

    #import <Cocoa/Cocoa.h>
    #import "TestClass.h"
    @interface TestClass(Category1) 
    -(void)TestMethod1;
    @end
    

    TestClass+Category1.m

    #import "TestClass+Category1.h"
    @implementation TestClass(Category1)
    -(void)TestMethod1 {
    NSLog(@"This is the output from TestMethod1");
    }
    @end
    

    TestClass+Category2.h

    #import <Cocoa/Cocoa.h>
    #import "TestClass.h"
    @interface TestClass(Category2) 
    -(void)TestMethod2;
    @end
    

    TestClass+Category2.m

    #import "TestClass+Category2.h"
    @implementation TestClass(Category2)
    -(void)TestMethod2 {
    NSLog(@"This is the output from TestMethod2");
    }
    @end
    

    Then in whatever file is using your class, you’ll use

    #import "TestClass.h"
    #import "TestClass+Category1.h"
    #import "TestClass+Category2.h"
    

    Now you can create an instance of class TestClass and it will have all the methods from both category1 and category2. Simply use

    TestClass* test = [[TestClass alloc] init];
    [test TestMethod1];
    [test TestMethod2];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 129k
  • Answers 130k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The extension methods abstract away the concept of DBNull, in… May 12, 2026 at 5:59 am
  • Editorial Team
    Editorial Team added an answer There is no intrinsic way in the IDE to perform… May 12, 2026 at 5:59 am
  • Editorial Team
    Editorial Team added an answer Add the right url to your urlpatterns: # ... ("^foo/(.*)$",… May 12, 2026 at 5:59 am

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.