Swift:检查空数组

时间:2016-02-05 10:03:38

标签: arrays swift arraylist

array = [
    “test” = test
    “test1” = test
    “test2” = test  
    “test4” = test  
]

检查test3是否在数组

我试着这样做:

if let check= userObject[“test3”]{

}

我的应用程序崩溃,我收到此错误:在展开可选值时意外发现nil

1 个答案:

答案 0 :(得分:1)

你需要用逗号分隔你的对象,这是一个字典,而不是一个数组。

@Component(
  selector: '[myLi]', // '[my-li]', 
  template: '<ng-content></ng-content>'
  ...)