我所拥有的iPhone应用程序使用数组填充UIpickerView。我有两个数组。其中一个有部队,另一个在每个部队都有相应的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和按钮。编译后,我没有任何错误。感谢。