I have a downloader in which I am trying to get the pasted text in my search bar to start downloading on tapping the return key.
How would I get the search bar to send a request to the pasted text to initialize the download?
What I'm calling:
NSString *pasteboardString = searchBar.text;
NSURL *url = [NSURL URLWithString:pasteboardString];
What needs to get triggered:
[self downloadURL:*HAS TO BE URL* userInfo:nil];
Any help is appreciated, thank you.
So I ended up figuring it out. In case somebody finds this useful.