For example, I have an enum like this:
REFLECTABLE_ENUM (NSInteger, ApiError,
/* Login errors */
ApiErrorStoreIDNotFound = 701,
ApiErrorUserNameNotFound = 702,
ApiErrorPasswordAuthenticationFailed = 703
);
NSLog(@"%@", REFAllValuesInApiError());
And then I got this:
704 doesn't exist in the enum, but it is returned from REFAllValuesIn.
Any idea?