ボタンクリックでドロップダウンを作成するために使用したカスタム動的テーブルを作成していますが、正常に動作します。テーブルのすべてのセルが真っ白になりました。テーブルに背景を追加することはできますが、セルに背景を追加するのに問題があります。これは、テーブルを作成するコードです。これとハイライトされた状態のセルに背景画像を追加するにはどうすればよいですか? また、その境界をカスタマイズすることも可能ですか?
- (void)createMenuTable {
int totalItems = [self.menuArray count];
float originalHeight = (MENU_CELL_HEIGHT * totalItems);
float tableHeight = (originalHeight > self.frame.size.height)? (self.frame.size.height - (originalHeight > self.frame.size.height)): originalHeight;
float xOrigin = 0;
if (self.menuBarPosition == POSITION_RIGHT) {
xOrigin = self.frame.size.width - MENU_TABLE_WIDTH;
}
CGRect tableFrame = CGRectMake(xOrigin, 0, MENU_TABLE_WIDTH, 0);
menuOptionsTableView = [[UITableView alloc] initWithFrame:tableFrame style:UITableViewStylePlain];
[menuOptionsTableView setDelegate:self];
[menuOptionsTableView setDataSource:self];
[menuOptionsTableView setAutoresizingMask:UIViewAutoresizingFlexibleHeight];
[self addSubview:menuOptionsTableView];
tableFrame.size.height = tableHeight;
[UIView animateWithDuration:0.35 animations:^{
menuOptionsTableView.frame = tableFrame;
} completion:^(BOOL finished) {
}];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *ParentCellIdentifier = @"MenuCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ParentCellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ParentCellIdentifier];
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
}
cell.textLabel.text = (self.menuArray)[indexPath.row];
[cell.textLabel setTextAlignment:NSTextAlignmentCenter];
[cell.textLabel setFont:MY_FONT_BOLD(14)];
return cell;
}