Swift Guard-Let Statement snippet

263 Views Asked by At

Why autocomplete for guardlet snippet doesn't work in closures? For example:

DispatchQueue.main.async(execute: {
    guardlet //no any suggestions by Xcode
})

Shouldn't I use this control statement in any closure? Or it's just wrong scopes in the snippet?

I'm using Xcode 8.2 (8C38).

2

There are 2 best solutions below

1
On
DispatchQueue.main.async(execute: {
 guard let x = x where x > 0 else {
   // Value requirements not met, do something
 }
})

N.B:- Hi,there are no such key available "guardlet" in xcode please write that code"guard let"

3
On

It works in Xcode 8.2.1:

guardlet snippet

Make sure you do not have pending compilation errors in your project. You can close Xcode and reopen it eventually.