[Solved] Swift – what does Optional mean in log output? [closed]
Optional means the value is Optional type. It can be either nil or a value. When working with cocoa api most of the method parameters are optional type. To get actual value from optional value you either use if-let binding or force it to unwrap it with ! operator. Suppose ve have a value of … Read more