I can't use the properties without explicitly unwrapping them. Implicit means that I can pretend they aren't optional.
But I often have lines that use ?? to bring in alternatives, and will, if the occasion calls for it, allow the app to fail silently. I tend to like using things like assertions and preconditions, if I want to make the app crash.
Hold on. Do you prefer your code failing silently instead of crashing?