我正在将https://ppyazi.com/viral转换为Web视图以提交给Apple App Store。我正在尝试创建一个UITextfield
,当有人输入其Twitter用户名时,它会请求https://ppyazi.com/viral/home.php?username=(UsernameHere)。基本上,我希望UITextfield
的功能与https://ppyazi.com/viral上的登录部分相同。
最佳答案
您可以通过请求UIButton
的操作添加ppyazi url
,也可以声明:
textview.delegate = self;
并实现UITextViewDelegate
并使用:
func textViewDidEndEditing(_ textView: UITextView) -> Bool {
//Do your Code to request URL
return true
}