I have a problem where I want to call a function defined in one view controller from another controller. I\'v try what seems llke a hundred different setups and nothing seem
"Hi All, I have a problem where I want to call a function defined in one view controller from another controller. I'v try what seems llke a hundred different setups and nothing seems to work."
This is because it is bad design. Controllers should not directly talk to each other.
You should consider using delegates, notifications or some shared central entity.