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 7547275
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T09:24:38+00:00 2026-05-30T09:24:38+00:00

I have a few custom UIViewControllers in my app which need to know the

  • 0

I have a few custom UIViewControllers in my app which need to know the string returned of an NSDate. I could copy and paste the same code between these classes, but that’s obviously terrible practise. It’s also probably not good to put it in 1 class as a method, then have another class add this class to take advantage of it’s method. It seems like a messy thing to do. So what would you recommend i do?

To clarify – I need a method which is given an NSDate and returns a string, for use in several other classes.

  • 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-30T09:24:40+00:00Added an answer on May 30, 2026 at 9:24 am

    Sounds like you either need a function, rather than a method:

    //Helpers.h
    
    #import <Foundation/Foundation.h>
    
    NSString * makeAStringFromThisDateSomehow(NSDate * d);
    

    //Helpers.m
    
    #import "Helpers.h"
    
    NSString * makeAStringFromThisDateSomehow(NSDate * d)
    {
        // Body
        // of
        // your
        // function
    }
    

    Or to make a category on NSDate to do what you need:

    //NSDate+AndrewsCategory.h
    
    #import <Foundation/Foundation.h>
    
    @interface NSDate(AndrewsCategory)
    - (NSString *)Andrew_MakeAStringSomehow;
    @end
    

    //NSDate+AndrewsCategory.m
    #import "NSDate+AndrewsCategory.h"
    
    @implementation NSDate(AndrewsCategory)
    - (NSString *)Andrew_MakeAStringSomehow {
        // Body
        // of
        // your
        // method
    }
    
    @end
    

    Note the stupid prefix on the method name. That’s important to keep your method names from colliding with other method names on framework classes. Usually you would use initials: your company’s, yours, or the project’s.

    In either case, just import the relevant header where you need to use the function or method, and you should be hunky-dory.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a few custom UITableViewCells - http://img11.imageshack.us/i/customfacilitiescell.png/ which are added to this UIViewController
I have a few models that need to have custom find conditions placed on
I have a UITable with few custom cells which contains text fields. However when
I have a few little custom dialogs in my app, and they are kinda
I have few settings which I could place in a separate XML file and
I have written a few MSBuild custom tasks that work well and are use
I have a simple C++ DLL that implements a few custom actions for a
I have created a small flash CS4 project that has a few custom components
I have a solution with many projects. One project contain few custom components. One
In a word, how? I have a view controller that creates a few custom

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.