Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITableViewCell Font Not Changing

I am trying to customize the font of a UITableViewCell using the following code for when the tableview is populated.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *MyIdentifier = @"MyIdentifier";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
    if (cell == nil) 
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier];
    }

    // Set up the cell  
    int storyIndex = [indexPath indexAtPosition: [indexPath length] - 1];   
    NSString *temp = [[NSString alloc] initWithString:[[stories objectAtIndex: storyIndex] objectForKey: @"title"]];
    cell.textLabel.text = temp;
    [[cell textLabel] setTextColor:[UIColor colorWithRed:154.0/255.0 green:14.0/255.0 blue:2.0/255.0 alpha:1]];
    [[cell textLabel] setFont:[UIFont systemFontOfSize:12.0]];  

    return cell;
}

For the life of me I don't know why it won't change the font! Also the above code works fine if I hard code in what the cell text is such as cell.textLabel.text = @"TEST";

Any suggestions? Thanks!

like image 457
Phillip Whisenhunt Avatar asked Dec 13 '09 02:12

Phillip Whisenhunt


3 Answers

First, you should autorelease your cell. You are leaking memory like crazy presently.

Second, you should update the font in tableView:willDisplayCellForRow:atIndexPath:. If you are using a standard table view, it will make changes to your cells (at random times) and you will need to do things like font changes, background color, etc in the tableView:willDisplayCellForRow:atIndexPath: instead of in the data source method.

See also this thread: What is -[UITableViewDelegate willDisplayCell:forRowAtIndexPath:] for?

like image 115
Jason Coco Avatar answered Sep 24 '22 21:09

Jason Coco


@Jason Coco:

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
}
like image 35
Manni Avatar answered Sep 24 '22 21:09

Manni


Just you can try with following code.


-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *cellString = @"cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellString];
    if(cell == nil){
        cell = [[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellString];
    }
    cell.textLabel.text = values;
    cell.textLabel.textColor = [UIColor colorWithRed:154.0/255.0 green:14.0/255.0 blue:2.0/255.0 alpha:1];
    cell.textLabel.font = [UIFont systemFontOfSize:12.0];
    return cell;
}
like image 43
jfalexvijay Avatar answered Sep 26 '22 21:09

jfalexvijay