Ios swift – Why guard let self = self else { return } can be compiled successfully
Question 1: in guard let self = self else { return }, first self and second self are same, why it can be compiled successfully? Because normal let self = self will be compiled with errors. Question 2: Even I…