私は透明な背景を持たせたいUITableViewを持っていますが、セルのテキストを透明にしなければそれを得ることはできません。ここに私が持っているものがあります。セルの背景を透明にして、透明にしないでください。
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
NSString *labelString = @"Hello";
[cell setBackgroundColor:[UIColor darkGrayColor]];
cell.alpha 0.2f;
cell.textLabel.textcolor = [UIColor whiteColor];
cell.textLabel.text = labelString;
私は、このようなcontentViewの背景色とアルファのほか、backgroundViewの色とアルファの設定など、いくつかの他のものを試してみましたが、何も動作していないようにみえます。
セルの作成方法とラベルの背景を設定してください。 – sosborn