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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T04:10:56+00:00 2026-06-02T04:10:56+00:00

Possible Duplicate: Class methods which create new instances I am wondering how to emulate

  • 0

Possible Duplicate:
Class methods which create new instances

I am wondering how to emulate the instantiation of classes like NSString, NSArray and such like this: [NSArray arrayWithObject:object]… in hope of eliminating inits and allocs.

I may not be familiar with what that actually does. According the the Documentation, [NSSArray array] creates and returns an empty array. What does that really mean, any allocations?

I want to be able to have a custom NSObject class and do: [CustomObj customObjWithData:data]

Thanks!

  • 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-06-02T04:10:59+00:00Added an answer on June 2, 2026 at 4:10 am

    First write a corresponding custom init... method:

    - (id)initWithFoo:(Foo *)aFoo
    {
         // Do init stuff.
    }
    

    Then add a custom factory method that calls alloc and your custom init... method:

    + (id)customObjWithFoo:(Foo *)aFoo
    {
        return [[[self alloc] initWithFoo:aFoo] autorelease];
    }
    

    If compiling with ARC, omit the autorelease call.

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

Sidebar

Related Questions

Possible Duplicate: Class methods which create new instances How would you declare a constructor
Possible Duplicate: Ternary Expression with Interfaces as a Base Class Classes: interface ISms {
Possible Duplicate: Why choose a static class over a singleton implementation? Static methods vs
Possible Duplicate: Interface vs Abstract Class (general OO) Following are the confusions which I
Possible Duplicate: Do methods which return Reference Types return references or cloned copy? A
Possible Duplicate: java thread - run() and start() methods I made a program which
Possible Duplicate: Java Generics: Array containing generics I have a Java class which contains
Possible Duplicate: When should I use static methods in a class and what are
Possible Duplicate: Difference between static class and singleton pattern? Which is better in Java,
Possible Duplicate: Find out which class called a method in another class. Hello everyone,

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.