We need more than just the "Unrecognised selector sent to instance" It should tell you something like:
[UIVeiewController presentModalViewController] unrecognised selector....
Basically it is saying that whatever the message you are sending is is not known by the receiver - think about trying to put a square shape into a circle.
so you could have something like :
Code:
[NSArray objectAtIndex] unrecognised selector sent to instance 0x3g435a
And that would mean hat NSArray doesn't have a method known as objectAtIndex and therefore does not know what to do with what you are sending to it.
Hope that helps
p.s. is this a typo on he post or in the code?:
Code:
[composer setModalTransitionStyle:UIModalTransitionStyleCros sDissolve];
obviously in the code there shouldn't be a space between the two s's