私はボタンとテーブルを持っています。今私はtableview
の行を選択してボタンを押すたびに、その特定のボタンプレスイベントが発生するような方法でクリックしたいと思います。そのために、まず私はUITableViewでイベントをクリック
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *LabelCellIdentifier = @"cell";
UITableViewCell *cell;
cell = [tableView dequeueReusableCellWithIdentifier:LabelCellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:LabelCellIdentifier];
}
if (indexPath.row <= [_arrayMp3Link count]) {
cell.textLabel.text = [_arrayMp3Link objectAtIndex:indexPath.row];
}
// now tag each row
NSInteger count = 1;
for (NSInteger i = 0; i < indexPath.section; i++) {
count += [[tableView dataSource] tableView:tableView numberOfRowsInSection:i];
}
count += indexPath.row;
// dequeue, create and configure...
cell.tag = count;
return cell;
}
すなわち、各行にタグを与え、今私は、行を選択して、私のボタンを押すと、ボタンにイベントを置くことです。しかし、正しいものを得ることはできません。
(IBAction)doDownload:(id)sender {
// to select first row
if(cell.tag==1)
{
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:@"http://www.google.com"]];
}
の名前です。ここで私の答えをチェックしてください:http://stackoverflow.com/a/12594183/1144632 – danielbeard