账号密码存入数组swift5
时间: 2024-02-23 18:58:15 浏览: 68
python输入整条数据分割存入数组的方法
好的,以下是一个简单的示例,使用数组来存储账号和密码:
```swift
// 定义一个数组来存储账号和密码
var accounts: [[String: String]] = []
// 添加账号和密码到数组中
func addAccount(username: String, password: String) {
let account = ["username": username, "password": password]
accounts.append(account)
}
// 遍历数组查找账号和密码是否匹配
func checkAccount(username: String, password: String) -> Bool {
for account in accounts {
if account["username"] == username && account["password"] == password {
return true
}
}
return false
}
```
使用示例:
```swift
// 添加账号和密码到数组中
addAccount(username: "test", password: "123456")
// 遍历数组查找账号和密码是否匹配
let isMatched = checkAccount(username: "test", password: "123456")
```
注意,这只是一个简单的示例,实际情况中你需要考虑更多的因素,例如账号密码的加密存储、重复账号的处理等等。
阅读全文