0

我正在使用 SBTableAlert(请参见此处:https ://github.com/mindbrix/SBTableAlert )并想知道是否可以更改突出显示的颜色。它目前是蓝色的,但我更喜欢另一个。我还希望选项文本更小一点而不是粗体,但我看不出这是在哪里设置的。

在此处输入图像描述

谢谢!

4

2 回答 2

1

在 SBTableAlert.m 中找到以下内容:

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {

在那里你可以只包括这个,你的背景颜色将被改变:

//Example with a predefined color
UIView *bgColorView = [[UIView alloc] init];
[bgColorView setBackgroundColor:[UIColor redColor]];
[self setSelectedBackgroundView:bgColorView];

或者

//Example with an RGB color
UIView *bgColorView = [[UIView alloc] init];
[bgColorView setBackgroundColor:[UIColor colorWithRed:155.0f/255.0f green:155.0f/255.0f blue:155.0f/255.0f alpha:1.0f]];
[self setSelectedBackgroundView:bgColorView];
于 2013-10-17T14:39:58.053 回答
0

只需在此方法中将此行添加到您的 RootViewController.m

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

    if ([indexPath row] == 1)
    {
        [cell.textLabel setText:@"Single Select"];
       cell.textLabel.font = [cell.textLabel.font fontWithSize:10];
    }
    else if ([indexPath row] == 0){
        [cell.textLabel setText:@"Multiple Select"];
        cell.textLabel.font = [cell.textLabel.font fontWithSize:10];}
    else if ([indexPath row] == 2){
        [cell.textLabel setText:@"Apple Style"];
        cell.textLabel.font = [cell.textLabel.font fontWithSize:10];}
    else if ([indexPath row] == 3){
        [cell.textLabel setText:@"Sections"];
        cell.textLabel.font = [cell.textLabel.font fontWithSize:10];}

    UIView *bgColorView = [[UIView alloc] init];
    bgColorView.backgroundColor = [UIColor redColor];
    [cell setSelectedBackgroundView:bgColorView];

    return cell;
}
于 2013-10-15T05:03:46.227 回答