tags:

views:

17

answers:

1

I think that i have noticed moving certain methods around causes errors when i compile that are remedied by putting the method back where it was.

am i making this up? is there are rhyme or reason to the order that these need to be in? is decided by the order of my .h? what about delegate methods and inherited methods?

+2  A: 

Yes, but only if you reference a method in an earlier place without declaring it elsewhere. You may want to declare your method in your main @implementation or stick it into a class extension in your implementation (.m) file.

Wevah
funny thing is that i first noticed this because of configureCell:atIndexPath which is not my method. Makes sense, I knew that about C but thought it didn't apply in Obj-c
griotspeak