我有这个网址:
UITextField = * usernameTextField
UITextField = * emailTextField
UITextField = * passwordTextField
我想通过UITextField发送用户名,那么我如何在这个网址中连接我的uitextField值请求帮助
我在编程方面非常新颖
提前致谢
答案 0 :(得分:0)
你可以这样做:
NSString *url = [NSString stringWithFormat:@"http://demii.com/demo/gearlode/links.php?username=%@&email=%@&password=%@&action=registration", usernameTextField.text, emailTextField.text, passwordTextField.text];