I am transferring a program from java to Objective C and need to use wait and notify methods that are frequently used for threading in java but can\'t seem to find any good
There are numerous techniques you could use. You can use NSCondition or POSIX semaphores or dispatch semaphores or by using run loops. Check out the Concurrency Guide and the the Threading Guide.
My personal favourite at the moment is the dispatch semaphore.