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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:59:29+00:00 2026-05-22T18:59:29+00:00

Suppose I have a function – (NSString *)fullNameCopy { return [[NSString alloc] initWithFormat:@%@ %@,

  • 0

Suppose I have a function

- (NSString *)fullNameCopy {
    return [[NSString alloc] initWithFormat:@"%@ %@", self.firstName, self.LastName];
}

Can somebody tell me how to call this function, how to assign its value to a new object, and how then to release it, avoiding memory leaks, and bad access.

Would it be like

NSSting *abc = [object fullNameCopy];

// Use it and release

[abc release];

or I should alloc abc string too ?

Update:

The point here, Can I return non-autorelease objects from a function and then release them in the calling function. As per Obj-C function naming conventions, a function name containing alloc or copy should return object assuming that calling function has the ownership.

As in above case, my function “fullNameCopy” return a non-autoreleased abject, and I want to release them in the calling function.

  • 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-22T18:59:29+00:00Added an answer on May 22, 2026 at 6:59 pm

    You are right. Since the method name contains the word ‘copy’, Cocoa convention dictates that the method returns an object that is owned by the caller. Since the caller owns that object, it is responsible for releasing it. For example:

    - (void)someMethod {
        NSString *abc = [object fullNameCopy];
    
        // do something with abc
    
        [abc release];
    }
    

    Alternatively, you could use -autorelease instead of -release:

    - (void)someMethod {
        NSString *abc = [[object fullNameCopy] autorelease];
    
        // do something with abc
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a function list_fun : int_list -> string list and in that
suppose I have this function: function f($string){ $string = preg_replace(`\[.*\]`U,,$string); $string = preg_replace('`&(amp;)?#?[a-z0-9]+;`i','-',$string); $string
Suppose I have defined a function: def hello(name:String, words:String) = println(Hello! + name +
Suppose I have the following function: ## Just an example f = function() {
Suppose I have: var myfunc = function() { // do stuff } myfunc.foo =
Suppose I have a 10 line function. If I add inline keyword, let's say
Suppose I have the following class Foo, that supports a function of any arity
I have a function in CodeIgniter which populates a list of days. I called
Suppose I have this: void func(WCHAR* pythonStatement) { // Do something with pythonStatement }
Suppose I have a stream of [acme] objects that I want to expose via

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.