0
私は自分のTableViewCellの内部にUIScrollViewを追加しようとしています。しかし、うまくいくように見えますが、スクロールしているときにラベルが右から来ると、セルの上に来ますが、テキストがラベルの左端に移動すると、ラベルの後ろに消えてしまいますそれに。UIScrollView内部UITableViewCell
提案がありますか?私はスクロールてるように右から
UIScrollView *previewScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, cell.contentView.frame.size.width, 80.0)];
previewScrollView.backgroundColor = [UIColor clearColor];
[previewScrollView setContentSize:CGSizeMake(500, 60.0)];
previewScrollView.showsHorizontalScrollIndicator = YES;
UILabel *headerLabel = [[UILabel alloc] initWithFrame:CGRectMake(15.0, 3.0, 500.0, 20.0)];
headerLabel.font = [UIFont boldSystemFontOfSize:14.0];
headerLabel.backgroundColor = [UIColor clearColor];
headerLabel.text = @"My long text string that I hope work out ok";
[previewScrollView addSubview:headerLabel];
[[cell contentView] addSubview:previewScrollView];
//[cell addSubview:previewScrollView];
[previewScrollView release];
私はグループ化されたテーブルビューを使用していますので、スクロールしているときに表示されている小さなテーブルビューの背景領域にテキストオーバーレイが表示されます。 – Convolution