swift如何对字典进行判空
时间: 2023-09-07 21:11:29 浏览: 275
判断一个 Swift 字典是否为空,可以通过判断字典的 count 属性是否为 0 来实现。具体代码如下:
```swift
let dict = [String: Any]()
if dict.count == 0 {
print("字典为空")
} else {
print("字典不为空")
}
```
或者可以使用 isEmpty 属性来判断:
```swift
let dict = [String: Any]()
if dict.isEmpty {
print("字典为空")
} else {
print("字典不为空")
}
```
这两种方式都可以判断字典是否为空。
阅读全文