2

私のアプリケーションでは、左側にメニューとして UITableView があります。表のセルを押すと、右のビューが変わります。私の「メニュー」テーブルには税関セルがあり、これが選択されたときにセルの画像を変更したいと考えています。どうやってやるの?

コード:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdentifier = @"MenuCell";
    CRMMenuCell *cell = (CRMMenuCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];

    if (!cell){

        NSArray * topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CRMMenuCell" owner:nil options:nil];

        for (id currentObjetc in topLevelObjects){

            if ([currentObjetc isKindOfClass:[CRMMenuCell class]]){

                cell = (CRMMenuCell *)currentObjetc;
                break;
            }

        }

    }



    cell.selectionStyle = UITableViewCellSelectionStyleNone;


    if (indexPath.row == 0)
    {
        cell.labelMenu.text = NSLocalizedString(@"calendarioKey", @"");
        cell.imagenMenu.image = [UIImage imageNamed:@"calendario_gris"];

    }





- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

    static NSString *cellIdentifier = @"MenuCell";
    CRMMenuCell *cell = (CRMMenuCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];


    if (!cell){

        NSArray * topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CRMMenuCell" owner:nil options:nil];

        for (id currentObjetc in topLevelObjects){

            if ([currentObjetc isKindOfClass:[CRMMenuCell class]]){

                cell = (CRMMenuCell *)currentObjetc;
                break;
            }

        }

    }


    if (indexPath.row == 0) 
    {

        cell.imagenMenu.image = [UIImage imageNamed:@"calendario_rojo"];


    }

ありがとう。

4

1 に答える 1

6

で行うことができます

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

あなたのTableViewのデリゲート。

画像を変更する方法は実装によって異なりますが、次のようにする必要があります。

CRMMenuCell *cell = (CRMMenuCell*)[tableView cellForRowAtIndexPath:indexPath];
cell.myImage = newImage;

編集:以下を試してください:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
   CRMMenuCell *cell = (CRMMenuCell*)[tableView cellForRowAtIndexPath:indexPath];
   cell.imagenMenu.image = [UIImage imageNamed:@"calendario_gris"];
}
于 2012-08-14T10:57:17.213 に答える