Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application there have two Outlet, one is UItextfield and another is UIWebview, textfield used to get the url request by the user and shown it in webview, but I met a problem is when finish the typing in my textfield, and click GO button(return) in the keyboard, that is nothing happen in my webview, my source code as shown in below:

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    NSLog(@"clicked");
    [textField resignFirstResponder];
    [mywebview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[textField text]]]];

    return YES;
}

What is the problem?

share|improve this question

1 Answer

up vote 0 down vote accepted

Have you set the delegate of the textfield to be the class with the textFieldShouldReturn: method?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.