又是烦人的菜鸟!
所以我试图开发一个小应用程序来检查文件夹中的文件。
文本字段是您的搜索字段。
您有一个包含 3 个选项的选择器视图
文件夹 A
文件夹 B
在谷歌上搜索。
我有一个问题:
1:如何将搜索字段和用户选择的按钮连接到按钮,以便当用户单击按钮时,假设该按钮搜索用户在谷歌上的输入?
我已经申请了 2 个视图。
一个是用户输入信息,另一个是显示该信息。
我的代码是这样的..
- (IBAction)buttonSearch:(id)sender {
self.userSearch = self.searchField.text; ///Users input on the search field
NSString *searchString = self.userSearch;
///I know Im missing the connection to the button with the pickView, how could I do that too?////
///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..? *****
}
@end
感谢您的帮助,我知道回答这些愚蠢的问题很痛苦……:/祝您有美好的一天!