Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to handle this situation, When I am running a long function process. And I have some Notification that comes in between and I have to execute some task with didReceiveNotification.

Note that what i want to do is that i have to stop my function process and have to execute my notification method.

Currently when i pause my mainThread then both the task are getting hanged up. What could be a better way to handle this task.

share|improve this question
What you can do is use a bit of threading concept. If you need more help then feel free to contact me :) – Parth Bhatt Nov 25 '11 at 6:13

1 Answer

Use RunLoop instead of sleep

[[NSRunLoop currentRunLoop] runUntilDate:(NSDate *)];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.