Closed jeffleeismyhero closed 8 years ago
When a select field is cleared using the "clear" button, subsequent access causes - (BOOL)identifierIsEqualTo:(id)identifier to hit the else condition which calls abort().
- (BOOL)identifierIsEqualTo:(id)identifier
else
abort()
This removes the else condition and allows the method to return NO.
NO
Hi @jeffleeismyhero, you're a maintainer now, so you can make a branch in Form. You don't need to use your own branch anymore.
When a select field is cleared using the "clear" button, subsequent access causes
- (BOOL)identifierIsEqualTo:(id)identifier
to hit theelse
condition which callsabort()
.This removes the
else
condition and allows the method to returnNO
.