我拥有的是一个用数组填充 UIpickerView 的 iPhone 应用程序。我有两个数组。其中一个有部队,另一个有每个部队对应的IP地址。我已经编写了我的 pickerView 方法,但我无法弄清楚如何通过 IBAction 执行 pickerView 方法。这就是我所拥有的。
我的应用程序上的按钮:
-(IBAction)btnConnect:(id)sender
{
}
我试图让按钮执行的方法:
-(void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent: (NSInteger)component
{
NSString *populateTroops = [troops objectAtIndex:row];
NSString *PopulateURLS = [URLArray objectAtIndex:row];
NSString *pathComponentString = [NSString stringWithFormat:@"%@%@/RadioFeed.mp3", populateTroops, PopulateURLS];
myFeed.scalesPageToFit = YES;
[myFeed loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[[NSBundle mainBundle] resourcePath]
stringByAppendingPathComponent:pathComponentString]]]];
}
有人可以帮帮我吗?当用户根据他们在 pickerView 中选择的内容单击按钮时,他们将被发送到分配给部队的正确 url。我在 .xib 文件中有 webView、pickerView 和按钮。编译后我没有任何错误。谢谢。