Użycie where in if let assignment in Swift

Dokumentacja Swift na stronie 61 podręcznika Swift wskazuje na możliwość użycia where do łączenia opcjonalnego wiązania z warunkiem regularnym. Jednak kiedy to robię, mam Ostrzeżenie sugerujące mi zastąpienie where przecinkiem, jak w poniższym fragmencie kodu:

if let geocodingError = error as? NSError where geocodingError.code == 2
Author: Grimxn, 2016-08-04

3 answers

W Swift 3 ta składnia uległa zmianie.

Co było

if let x = y, a = b where a == x {

Jest teraz

if let x = y, let a = b, a == x {

Uzasadnienie jest takie, że każda podpunkt if ... { jest teraz niezależnym testem logicznym.

Zobacz informacje o wydaniu Xcode i Swift Evolution proposal Aby uzyskać więcej informacji na temat tej zmiany.

 123
Author: Grimxn,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2016-08-04 09:24:50

In xcode 9

if let str = textField.text as String!, !str.isEmpty
{
   params[key] = str
   TextFieldHelper.setup(textField: textField)
}
else
{ 
   TextFieldHelper.error(textField: textField)
}
 3
Author: luhuiya,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2017-10-05 03:55:23

Przykład z dwoma warunkami

if let x = y, let a = b, a == x && !x.isEmpty {
 2
Author: Alex,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2017-07-29 20:15:33