Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. - (IBAction)buttonSearch:(id)sender {
  2.  
  3.  
  4. self.userSearch = self.searchField.text; ///Users input on the search field
  5.  
  6. NSString *searchString = self.userSearch;
  7.  
  8. ///I know Im missing the connection to the button with the pickView, how could I do that too?////
  9.  
  10.  
  11. ///Here should be something like go to google(or whatever choice the user made on pickview) and put the string on the search bar and hit search/// <---How do I do this too..? *****
  12.  
  13.  
  14.  
  15. }
  16. @end
  17.  
  18. @property (nonatomic, strong) IBOutlet UITextfield *myTextField;
  19.  
  20. self.myTextField.text
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement