预期','加入多条款条件的部分

时间:2016-08-16 14:52:13

标签: swift swift3

我正在尝试编写一个多部分的守卫声明,如下所示:

.title_EService {
  background: url(http://advantageaccountants.com.au/image/e_service_header.jpg) fixed center 3.67em no-repeat;
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.title_EService > header {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 20px 30px;
  background: inherit;
  background-attachment: fixed;
  overflow: hidden;
}

.title_EService > header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: inherit;
  background-attachment: fixed;
  -webkit-filter: blur(4px);
  filter: blur(4px);
}

.title_EService > header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25)
}

.title_EService > header > h1 {
  font-weight: bold;
  margin: 0;
  color: white;
  position: relative;
  z-index: 1;
}

然而,这给了我错误guard let killSwitchedFeatures = quickAuthCardAccount.killswitches, !self.isKillswitched(usingArray: killSwitchedFeatures) else { return } 有谁知道我为什么会收到此错误?我对Swift来说还是比较新的,但从网上的例子可以看出这至少是可能的。

我正在使用Xcode 8 beta 5,如果这有任何区别

编辑:以下是Expected ',' joining parts of a multi-clause condition.方法的定义:

isKillswitched

以下是private func isKillswitched(usingArray killswitchArray: [String]) -> Bool 属性的定义:

killswitches

1 个答案:

答案 0 :(得分:0)

我认为您可以尝试在新行中创建第二个子句(没有找到正式文档,因此请注意。但可以尝试使用它。)。

我读了这篇关于swift 3中所做的更改的文章:https://github.com/apple/swift-evolution/blob/master/proposals/0099-conditionclauses.md