0
我已經創建了兩個UITextField
如何通過文本字段inputed數據的網址上迅速
@IBOutlet weak var txtUsername: UITextField!
@IBOutlet weak var txtUserpassword: UITextField!
,使用戶名和密碼來存儲數據
let username = txtUsername.text
let userpassword = txtUserpassword.text
此外,通過數據URL
let urlAsString = "http://lifewinner2015.dlinkddns.com/SERVER/user?function=login&username=\(username)&password=\(userpassword)"
但\(username)
和\(user password)
可能是錯誤的Xcode不能運行這個。
可以幫我解決這個問題嗎?