Small question. My plist looks like:

On the screen there are two buttons (A, B) that trigger a detail view. I'm trying to check which choice the user makes like so:
if ([self.question.answers objectAtIndex:0])//answer A?
{
//do some stuff
}
else if ([self.question.answers objectAtIndex:1])//Answer B?
{
//do some other stuff
}
Any insight into why this doesn't work or a better way to make the distinction would be great! Currently both button A and B display the view controller for button A... Thanks!