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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T21:45:22+00:00 2026-06-03T21:45:22+00:00

I have a class method that gets called by a view controller. I want

  • 0

I have a class method that gets called by a view controller. I want the view controller to be aware of when the class method has finished its tasks (it has threads on it).
I think I should use delegation, but I need an id delegate, and I can’t call it by self.delegate, because there is no self in a class method.

How should I do this?
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-03T21:45:23+00:00Added an answer on June 3, 2026 at 9:45 pm

    You can store a delegate at class-level (even separate from an object-level delegate), but it sounds a bit fishy to me. Here’s how you’d do it:

    In your header file:

    @interface SomeClass : SomeBaseClass
    {
    ...
    }
    
    ...
    + (id<SomeDelegateProtocol>)classDelegate
    + (void)setClassDelegate(id<SomeDelegateProtocol>) delegate
    + (void)myCleanupClassMethod
    
    @end
    

    In your implementation file:

    @implementation SomeClass
    ...
    
    static id<SomeDelegateProtocol> _classDelegate = nil;
    
    + (id<SomeDelegateProtocol>)classDelegate
    {
        return _classDelegate;
    }
    
    + (void)setClassDelegate(id<SomeDelegateProtocol> delegate
    {
        _classDelegate = delegate;
    }
    
    + (void)myCleanupClassMethod
    {
        if ([_classDelegate respondsToSelector:@selector(theDelegateMethod:)])
        {
            [_classDelegate theDelegateMethod:something];
        }
    }
    
    @end
    

    To actually use this code, you simply set the class-level delegate like an object-level delegate and wait for it to be called (you need to decide when myCleanupClassMethod is invoked):

    // Somewhere else in the project
    [SomeClass setClassDelegate:self];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class that requires a specific method to be called before being
I have a class that has a method: -(NSInteger) getCityCountForState:(NSString *)state CityArray:(NSMutableArray *)cityArray {
I have a class that has an output() method which returns a matplotlib Figure
I have a UIViewController subclass called TripViewController. This class has the following method: -
I have a method in c++ that gets called from python and needs to
I have a C# class method that return a xml document not file. How
I have a class with some method that depend by one parameter. What is
i have bug that i cannot find, i have Class Point with method who
I have a method that takes a list of entities ( Class es) and
I have a method that I'm using to output all the class names in

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.