1

各 UITableViewCell に UISlider をプログラムで埋め込んでいますが、下の画像に示すように、これらの UISlider の最初の 2 つが常に破損していることに気付きました。

ここに画像の説明を入力

UISlider のボタンを最初にスライドすると、そのボタンの一部が取り残されます。他の誰かが同じ問題を経験しましたか? 私のコードを見る必要があるかどうか教えてください。

この問題とは別に、その横にある UISlider に接続されている UIlabel はうまく機能します。

詳細: 私の cellForRowAtIndexPath 関数は以下のとおりです。UISlider を追加する部分については、最後の 2 番目の段落を探してください。また、セルに複数のスライダーを追加しているのではないかと疑っていました。行の NSLog 出力をチェックして、各スライダーが 1 回だけ追加されることを確認しました。

NSLog(@"initiating slider at section %d row %d", indexPath.section, indexPath.row);

セクションと行の組み合わせはそれぞれユニークです。

また、テーブルにある tableViewCell-rows の数に関係なく、上位 2 行の UISliders のみが影響を受けるのも奇妙です。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//creating a basic valid cell object
static NSString *cellIdentifier = @"ActivitiesTVCcell";
UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:cellIdentifier];

if (!cell){
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}

if(indexPath.section == 0){
    NSArray *rowNames = [self.phpReply_ActivitiesTVC componentsSeparatedByString:@"\n"];
    cell.textLabel.text = [rowNames objectAtIndex:indexPath.row+2];
}
else if (indexPath.section == 1){
    if (indexPath.row == 0) {
        cell.textLabel.text = @"Seated";
    }
    else if (indexPath.row == 1){
        cell.textLabel.text = @"Standing";
    }
}

cell.selectionStyle = UITableViewCellSelectionStyleNone;



//start code addition of graph button stuff
UIButton *graphButton = [UIButton buttonWithType:UIButtonTypeCustom];
[graphButton setFrame:CGRectMake(224, 0, 43, 37)];
[graphButton setBackgroundImage:[[UIImage imageNamed:@"graph icon.png"] stretchableImageWithLeftCapWidth:1.0 topCapHeight:1.0] forState:UIControlStateNormal];
[graphButton setBackgroundImage:[[UIImage imageNamed:@"graph icon.png"] stretchableImageWithLeftCapWidth:1.0 topCapHeight:1.0] forState:UIControlStateSelected];

[graphButton addTarget:self
                action:@selector(graphButtonPressed:)
      forControlEvents:UIControlEventTouchUpInside];
[cell addSubview:graphButton];
//end code addition of graph button stuff


//start code addition of video button stuff
UIButton *videoButton = [UIButton buttonWithType:UIButtonTypeCustom];
[videoButton setFrame:CGRectMake(300, 0, 43, 37)];
[videoButton setBackgroundImage:[[UIImage imageNamed:@"videoicon.png"] stretchableImageWithLeftCapWidth:1.0 topCapHeight:1.0] forState:UIControlStateNormal];
[videoButton setBackgroundImage:[[UIImage imageNamed:@"videoicon.png"] stretchableImageWithLeftCapWidth:1.0 topCapHeight:1.0] forState:UIControlStateSelected];

[videoButton addTarget:self action:@selector(videoButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
[cell addSubview:videoButton];
//end code addition of video button stuff


//start code for addition of enable switch
UISwitch *activityEnableSwitch = [[UISwitch alloc] initWithFrame:CGRectMake(376, 7, 0, 0)]; //size components of CGRect are ignored
[activityEnableSwitch setOn:NO animated:YES];
[activityEnableSwitch addTarget:self
                         action:@selector(enableSwitchStateChanged:)
               forControlEvents:UIControlEventValueChanged];
[cell addSubview:activityEnableSwitch];
//end code for addition of enable switch

//start code for addition of target angle text field
UITextField *targetAngleTextField = [[UITextField alloc] initWithFrame:CGRectMake(476, 7, 50, 25)];
targetAngleTextField.borderStyle = UITextBorderStyleRoundedRect;
targetAngleTextField.font = [UIFont systemFontOfSize:15];
targetAngleTextField.textColor = [UIColor blackColor];
targetAngleTextField.placeholder = @"30";
targetAngleTextField.autocorrectionType = UITextAutocorrectionTypeNo;
targetAngleTextField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
targetAngleTextField.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;
targetAngleTextField.keyboardType = UIKeyboardTypeNumberPad; //no num pad on ipad :(
//[targetAngleTextField becomeFirstResponder];
targetAngleTextField.delegate = self;

[cell addSubview:targetAngleTextField];
//end code for addition of target angle text field

//start code for addition of degree text label
UILabel *degreeLabel = [[UILabel alloc] initWithFrame:CGRectMake(532, 6, 10, 10)];
degreeLabel.text = @"o";
degreeLabel.font = [UIFont systemFontOfSize:10];
[cell addSubview:degreeLabel];
//end code for addition of degree text label

//start code for addition of progression level UISlider
NSLog(@"initiating slider at section %d row %d", indexPath.section, indexPath.row);
UISlider *progressionLevelSlider = [[UISlider alloc] initWithFrame:CGRectMake(576, 7, 150, 25)];
progressionLevelSlider.minimumValue = 0;
progressionLevelSlider.maximumValue = 9;
progressionLevelSlider.continuous = YES;
progressionLevelSlider.value = 3;

[progressionLevelSlider addTarget:self
           action:@selector(progressionSliderValueChanged:)
 forControlEvents:UIControlEventValueChanged];

[cell addSubview:progressionLevelSlider];
//end code for addition of progression level UISlider

//start code for addition of level ? text label
UILabel *progressionLevelLabel = [[UILabel alloc] initWithFrame:CGRectMake(782, 13, 10, 20)];
progressionLevelLabel.text = [NSString stringWithFormat:@"%d", 2];
progressionLevelLabel.font = [UIFont systemFontOfSize:17];
progressionLevelLabel.tag = 121; //tag represents this particular UIlabel, so that we can set it from outside this function.
[cell addSubview:progressionLevelLabel];
//end code for addition of level ? text label


[cell setTag:(indexPath.section)*100+indexPath.row];

return cell;
}

これが私のsliderValueChanged関数です。「破損」はスライダーをドラッグした後にのみ表示されるため(値を変更するため)、このコードをここに配置します。

-(void)progressionSliderValueChanged: (UISlider *)sender {
int section = ([sender superview].tag)/100;
int row = [sender superview].tag%100;

int value = sender.value;

NSLog(@"slider value at section %d row %d was slided to %d",section, row, value);

UITableViewCell *superViewOfSlider = (UITableViewCell *)[sender superview];
UILabel *progressionLevelLabel = (UILabel *)[superViewOfSlider viewWithTag:121];
progressionLevelLabel.text = [NSString stringWithFormat:@"%d", value];
[superViewOfSlider addSubview:progressionLevelLabel];

}

4

1 に答える 1

0

セルが再利用されるたびに、まったく新しいサブビューのセットがセルに追加されます。これらのサブビューを作成するすべてのコードを調べて、セルを作成するブロック内に移動します。そのブロックの後、必要なサブビューを見つけ (タグなどを使用して)、それらのサブビューの値を設定するだけです。

于 2012-09-30T14:01:01.893 に答える