私はiPhone開発に不慣れで、1つのアプリを開発しています。そのアプリでは、それぞれの価格をUITableView
. この問題を解決するためにUITableViewCell
、アイテムとその価格を表示するためにラベルを動的に作成するなどのいくつかの概念に従っています。
アプリでは、最初のindexid == 1
手段は、リスト上の特定のセルをクリックしてリストの場所を表示していることを意味し、価格のお気に入りのアイテムのリストを取得しています。 .しかし、ラベルはそれを隠していません アイテムのリストではなく、定価を表示します
lblText.text = nil;
btnBack.hidden = FALSE;
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
cell.textLabel.font = [UIFont boldSystemFontOfSize:14.0];
cell.textLabel.highlightedTextColor = [UIColor orangeColor];
}
///////////////////// Cell Title /////////////////////
if (indexId == 1)
{
// NSLog(@"%@",lblText1);
cell.textLabel.text = [NSString stringWithFormat:@"%@", [test.arrTitle objectAtIndex:indexPath.row]];
lblText = [[UILabel alloc] initWithFrame:CGRectMake(250, 7, 40, 30)]; // For right alignment
lblText.text = [test.arrId objectAtIndex:indexPath.row];
[lblText setTextAlignment:UITextAlignmentCenter];
lblText.textColor = [UIColor redColor];
lblText.backgroundColor = [UIColor clearColor];
[cell addSubview:lblText];
cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"products-category-bg.png"]];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
[lblText release];
}
else
{
lblText.hidden = YES;
cell.textLabel.text = [NSString stringWithFormat:@" %@", [test.arrTitle objectAtIndex:indexPath.row]];
cell.backgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"product-bg-hover.png"]];
}
return cell;
}
次の問題があります。ラベルは正常に作成されていますが、戻るボタンをクリックすると、メインのテーブルビューにラベルの値が表示されます。
ラベルオブジェクトをデータで解放するにはどうすればよいですか?
ありがとうございます。それでは、お元気で
この問題から私を助けてください