私が持っているのは、UIpickerView に配列を設定する iPhone アプリです。私は2つの配列を持っています。そのうちの 1 つには部隊があり、別の部隊には各部隊に対応する 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、およびボタンがあります。コンパイル時に、いかなる種類のエラーもありません。ありがとう。