25th December Hello! Welcome back to our regular feature where we write a little bit about some of the games we’ve been playing over the past few days. This week it’s all about Christmas presents and video game memories we associate with the festive season – what we’ve unwrapped, gifted, or otherwise been somehow involved […]
Swift 5.7 introduces a new, more concise way to unwrap optional values using if let and guard let statements. Before, we always had to explicitly name each unwrapped value, for example like this: class AnimationController { var animation: Animation? func update() { if let animation = animation { … } } } But now, we […]