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

  • Home
  • SEARCH
  • 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 8830499
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T08:06:19+00:00 2026-06-14T08:06:19+00:00

If I have an Objective-C method that takes an object parameter, and said method

  • 0

If I have an Objective-C method that takes an object parameter, and said method uses a block to do its work internally, is there a way to modify that object from within the block?

It is my understanding that blocks capture variables from their parent scope by referring to them within the block, and that they are copied by default. And if I want to be able to modify rather than work with a copy of a surrounding object, I can prefix its declaration with __block, but I’m unable to do so with method parameters since I didn’t declare it myself, right?

For example:

- (void)doWorkWithString:(NSString *)someString
{
    [NSFoo doAwesomeClassMethodWithBlock:^{
        // How can I modify someString here directly?
        // By just changing someString, I'm changing the captured copy
    }];
}
  • 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-14T08:06:24+00:00Added an answer on June 14, 2026 at 8:06 am

    What you say about capture is correct; what you probably want to do is supply the objects that should be the subject of the block as arguments to it — much like if you were calling a C function. So e.g.

    void (^ someBlock)(NSString *) =
        ^(NSString *someString)
        {
            NSLog(@"length is %d", [someString length]);
        };
    
    ...
    
    someBlock(@"String 1");
    someBlock(@"A second string");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a method in Objective-c that takes in an NSDictionary and returns the
In Objective C, is there a way to determine at runtime, if an object
Is there a way in objective-c to find out if a method of an
I have an init method that takes an (id) argument: -(id) initWithObject:(id) obj; I'm
If subclass in objective-c wants to override a super class's method, does it have
This is Objective-C, in Xcode for the iPhone. I have a method in main.m:
I have some Objective-C [i-os] code that I would like to run unit tests
I have some Objective-C code that looks like this: #define myVar 10 float f
I have an objective-c application for OS X that compares two sqlite DB's and
I have a program in python that includes a class that takes a function

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.