アプリのオプション パネルとして、静的なテーブル ビューを持つ UITableViewController を使用しています。丸みを帯びたボーダー パネルを示す背景画像があり、この画像内に静的セルを収めたいと考えています。残念ながら、セルの幅を設定することはできず、テーブルはできるだけ多くのスペースを確保しようとしているようです。
どうすれば修正できますか?
どうもありがとう
クロース
アプリのオプション パネルとして、静的なテーブル ビューを持つ UITableViewController を使用しています。丸みを帯びたボーダー パネルを示す背景画像があり、この画像内に静的セルを収めたいと考えています。残念ながら、セルの幅を設定することはできず、テーブルはできるだけ多くのスペースを確保しようとしているようです。
どうすれば修正できますか?
どうもありがとう
クロース
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.textLabel.font = [UIFont boldSystemFontOfSize:16];
//cell background image
UIImageView *backgroundView = [[UIImageView alloc] initWithFrame:CGRectZero];
cell.backgroundView = backgroundView;
backgroundView.image = [UIImage imageNamed:@"backgroundimage.png"];
return cell;
}