Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

error after installing xcode 5: value for key (UIHighlighted) is not a boolean

After installing xcode 5 and running the simulator I get following error:

'NSInvalidUnarchiveOperationException', reason: '* -[NSKeyedUnarchiver decodeBoolForKey:]: value for key (UIHighlighted) is not a boolean'

The app closes just before opening. It was working fine on xcode 4.6. What could it be?

It seems to be related with a UIImageView, is that the case?

like image 504
juan Isaza Avatar asked Sep 28 '13 18:09

juan Isaza


1 Answers

I had one UIImageView that has the highlighted property set, which seems like causing the issue.

Unseting the highlighted property of the UIImageView using the Interface Builder solved my problem.

like image 113
alpere Avatar answered Nov 15 '22 04:11

alpere