Does correcting a value in an validation method mark the object as dirty?
- by dontWatchMyProfile
From the docs:
If you change the input value in a
validate:error: method, you must
ensure that you only change the value
if it is invalid or uncoerced. The
reason is that, since the object and
context are now dirtied, Core Data may
validate that key again later. If you
keep performing a coercion in a
validation method, this can…