Hi I have an web service based app that will interchange data with our server. Since I have a dedicated class doing my work, the main view controller will actually call the worker every time. The worker itself knows when the connection finished since it is a NSURLConnectionDelegate. However I need to inform the main view controller whenever the work is done. The worker is a delegate of main view controller so it knows when it need to start working. Please help me.
|
|
|
You should do the other way around. First declare your worker object as a member of your main view controller(and of course, make it a property), then from you main view controller, you can just call Second, within your main view controller, wherever you initialize your work object, don't forget to put Third, declare a delegate method in your worker class, something like Last, you wanna declare your main view controller as the delegate of your worker class and implement Hope this helps. |
|||||
|
|
|
You can do it in two ways: Approach #1: User Local notifications. In the mainclass add an observer into LocalNotification Center in following way.
And in the worker class when the job is done, post nofitication to fire the selector:
Approach #2: You can create a protocol of your worker class and add a method in the protocol which you can call on the delegate when your job is done in worker. WorkerClass.h
WorkerClass.m
MainClass.h
MainClass.m
|
||||
|
In
Then when your data was successfully interchanged with the server, post a notification within the network completion block:
And
|
|||
|
|
|
I would fire a notification from the background worker that you can listen for from your main view controller In your View add the following when you want to listen.
In your background View notify that the event completed.
Finally don't forget to remove the observer [[NSNotificationCenter defaultCenter] removeObserver:self]; |
|||
|
|