0

重複の可能性:
UITableview の行番号を知る方法

このtableViewにtableViewとtableViewCellがあります。CustomCell という tableViewCell の別のクラスを定義して、必要なカスタマイズをコーディングし、(このセルに) ボタンも作成しました。tableViewCell のボタンがクリックされたときに、どの tableViewCell にそのボタンが含まれているかを知りたいので、そのセル (クリックされたボタンを含む) にのみ必要な変更を加えることができます。

クリックされたボタンがどの tableViewCell に含まれているかをどのように理解できますか?

4

6 に答える 6

0

これはどう...

- (UITableViewCell *)cellWithSubview:(UIView *)subview {
    while (subview && ![subview isKindOfClass:[UITableViewCell self]]) subview = subview.superview;
    return (UITableViewCell *)subview;
}

- (IBAction)buttonClicked:(id)sender {
    UITableViewCell *theCell = [self cellWithSubview:sender];
}
于 2013-01-23T18:29:46.970 に答える
0

cellForRowAtIndexPathこの方法でこのメソッドを呼び出す必要があります。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }


    button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.frame = CGRectMake(10 , 10, 200, 20);
    [button addTarget:self action:@selector(passRowValueMethod:) forControlEvents:UIControlEventTouchUpInside];
    [button setTag:indexPath.row];
    [button setTitle:[NSString stringWithFormat:@"%d", indexPath.row] forState:UIControlStateNormal];
    [cell addSubview:button];


    return cell;
}

次に、ボタン ターゲット メソッドを定義し、このメソッドでタグ値を取得します。

-(void)passRowValueMethod:(UIButton*)sender
{
    UIButton *buttonGet = sender;
    NSLog(@"%d", buttonGet.tag);
}
于 2013-01-23T20:21:40.040 に答える
0

If you replace the accessory detail button with your custom button, then you can call the accessoryButtonTappedForRowWithIndexPath: method.

example - put this in cellForRowAtIndexPath (when setting up cell):

UIButton *myAccessoryButton = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 125, 24)];
[myAccessoryButton setImage:[UIImage imageNamed:@"yourImage.png"] forState:UIControlStateNormal];
[cell setAccessoryView:myAccessoryButton];
[myAccessoryButton release];
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

and then as a separate method:

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:    (NSIndexPath *)indexPath
{
    //do something
}
于 2013-01-23T18:27:26.063 に答える
0

One strategy for implementing this is to assign a tag with the row number to the button that was pressed:

- (UITableViewCell *)tableView:(UITableView *)tableView 
         cellForRowAtIndexPath:(NSIndexPath *)indexpath {
    YourCustomCell *cell = // Code
    cell.button.tag = indexPath.row;

    // Other cell preparation code

    return cell;
}

Then, in the action for the button, you can see what its tag is to determine what model object that corresponds to:

- (void)didSelectButton:(id)sender {
    UIButton *button = sender;
    NSInteger tag = button.tag;

    YourModelObject *item = self.items[tag];

    //    Continue with the business logic for what should
    //    happen when that button is pressed.
}
于 2013-01-23T18:27:55.883 に答える
0

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];

CGRect frame = CGRectMake(0.0, 10.0, 24, 24);
button.frame = frame;
[button setTag:((indexPath.section & 0xFFFF) << 16) |
 (indexPath.row & 0xFFFF)];
[button setImage:[UIImage imageNamed:@"link-buttoni4.png"] forState:UIControlStateNormal];
[button setImage:[UIImage imageNamed:@"link-button-onclicki4.png"] forState:UIControlStateHighlighted];
[button setSelected:NO];

// set the button's target to this table view controller so we can interpret touch events and map that to a NSIndexSet

[button addTarget:self action:@selector(checkButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
button.backgroundColor = [UIColor clearColor];
cell.accessoryView = button;

}

-(void)checkButtonTapped:(UIButton *)送信者 {

NSUInteger section = ((sender.tag >> 16) & 0xFFFF);
NSUInteger row     = (sender.tag & 0xFFFF);
NSLog(@"Button in section %i on row %i was pressed.", section, row);

}

于 2013-01-24T05:19:18.550 に答える
0

これを試してみると
、このメソッドでクリックされたセルのセクションと行番号を知ることができます:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
}

1>section は
int sectionno = indexPath.section
で取得できます 2>cell index は
int rowno = indexPath.row
で取得でき、次に使用すると、次のようにテーブル セルを取得できます。

UITableViewCell *cell=[product_table cellForRowAtIndexPath:[NSIndexPath indexPathForRow:rowno inSection:sectionno]];
于 2013-01-24T10:56:56.243 に答える