属性文本不适用于

属性文本不适用于

试图在 TabelViewCell 上使用不同的字体和字体大小,但它不起作用。

这是我尝试过的:

cell.textLabel.attributedText = [infoCells objectAtIndex:indexPath.row];

此代码使应用程序崩溃

然后我试过这个:
cell.textLabel.text = [infoCells objectAtIndex:indexPath.row];

现在一切正常,但字体和字体大小没有改变。

以下是我的应用程序中的更多代码:
- (void)viewDidLoad
{
    [super viewDidLoad];

    infoCells  = [[NSMutableArray alloc] initWithCapacity:2];


    [infoCells addObject:@"DOI"];
    [infoCells addObject:@"WIS?"];
    [infoCells addObject:@"اللَّهُمَّ إِنِّي أَسْتَخِيرُكَ بِعِلْمِكَ وَأَسْتَقْدِرُكَ بِقُدْرَتِكَ"];

}

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


    // Configure the cell...

    cell.textLabel.attributedText = [infoCells objectAtIndex:indexPath.row];

    cell.textLabel.font = [UIFont fontWithName:@"Adobe Arabic" size:20];

    return cell;

}

最佳答案

您需要制作一个 NSMutableAttributedString 字符串,然后分配它。因此,有关更多信息,请参见本示例。

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


        // Configure the cell...

    NSMutableAttributedString *str=[[NSMutableAttributedString alloc] initWithString:[infoCells objectAtIndex:indexPath.row]];
 [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Helvetica-Bold" size:50] range:NSMakeRange(0, str.length)];

        cell.textLabel.attributedText = str;

        //cell.textLabel.font = [UIFont fontWithName:@"Adobe Arabic" size:20];

        return cell;

    }

关于ios - 属性文本不适用于 TableView 单元格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20397094/

10-09 08:07