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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T13:38:58+00:00 2026-06-06T13:38:58+00:00

I would like to execute code sequentially in an NSOperation. This can be easily

  • 0

I would like to execute code sequentially in an NSOperation.
This can be easily done by instantiating NSInvocationOperation, for example in a controller of mine I have:

NSOperationQueue *queue = [NSOperationQueue new];

NSInvocationOperation *prepare = [[NSInvocationOperation alloc] initWithTarget:self 
                                                                      selector:@selector(prepare) 
                                                                        object:nil];

NSInvocationOperation *load = [[NSInvocationOperation alloc] initWithTarget:self 
                                                                selector:@selector(loadData) 
                                                                        object:nil];

[load addDependency:prepare];

This works perfectly, and most of all I can keep dependency between operations. But as you can see I had to create methods encapsulating the operation itself.
I would like instead to instantiate the invocation as a fragment of code, and keep dependency.
Therefore my view controller would be clean for never again used methods.

I saw there is a ^block option but seems that dependency is not maintained.

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-06T13:38:59+00:00Added an answer on June 6, 2026 at 1:38 pm

    You should be able to add dependencies with any subclass of NSOperation. In your case you probably want NSBlockOperation:

    NSOperation *prepare = [NSBlockOperation blockOperationWithBlock:^{
        // code here
    }];
    
    NSOperation *laod = [NSBlockOperation blockOperationWithBlock:^{
        // code here
    }];
    
    [load addDependency:prepare];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically I would like to tell MSTest to execute a bit of code before
I have a specific DB2 query, and I would like to execute this query
I have a litle android application where i would like to execute some code
I would like to execute a program in .NET server side code. So far
I execute the following code using mvn exec:java com.mycompany.FooServer . I would like to
here I would like to execute both javascript and JSP after onclick event <CODE>
I would like to execute some code on installation in order to register with
I would like to measure the system time it takes to execute some code.
I have multiple UIViews, UIButtons etc. and would like to execute some specific code
I have this line inside my BAT file: Example1Server.exe I would like to execute

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.