Quote:
Originally Posted by KingIsulgard
This is also tend to happen when you are using a defined function which haven't been defined yet.
|
Another reason this can happen is from using similar parameter names.
e.g. something like this:
-(void)gotoPageNumber: (int)pageNum
-(void)dropPageOut: (int)pageNumber
This does not seem to be a problem until you start debugging, and you run into problems.