Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
   fourLetterWord = @"isdjfiodjof";
   if ([UIReferenceLibraryViewController dictionaryHasDefinitionForTerm:fourLetterWord]) {
        self.display.text = fourLetterWord;
        return;
    }
    else
        fourLetterWord = @"";

This string is getting accepted. I do not know what I am doing wrong here, but before 4.5 this worked fine. Is this an issue with xcode 4.5, or is there something wrong with my code?

share|improve this question
What's the problem? Are you getting to the else clause instead of the if? – rdelmar Sep 22 '12 at 2:46
The string "isdjfiodjof" is being accepted. It answers YES when it should answer NO since that is clearly not in the english dictionary. – AGleasonTU Sep 22 '12 at 18:47
   
I'm actually running into the same problem right now. Did you ever find a solve for this? I can't get it to return false anymore, used to work fine until recently. – AJak Oct 12 '12 at 17:31
Is this only in iOS6? Regardless, it sounds like a bug and should be logged with Apple at bugreport.apple.com. – Robotic Cat Oct 12 '12 at 17:40
Haven't gotten it to work, I hoped it would be fixed with the most recent update but it has not. Now I figure it is only an issue that apple can fix – AGleasonTU Oct 16 '12 at 16:49

1 Answer

up vote 1 down vote accepted

I just had the same issue and start working around it.[UIReferenceLibraryViewController dictionaryHasDefinitionForTerm:fourLetterWord]) method doensn't work in the simulator for some reasons, Apple need to fix it.

BUT if you TEST YOUR APP IN THE DEVICE [UIReferenceLibraryViewController dictionaryHasDefinitionForTerm:fourLetterWord]) method runs and gives you the right result.

it's kinda slow though.

hope helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.