Quantcast
Channel: How to Change Font Size of Cell in uitableview - Stack Overflow
Browsing latest articles
Browse All 9 View Live

Answer by smukamuka for How to Change Font Size of Cell in uitableview

Swift 3 version:cell?.textLabel?.font = UIFont.init(name: "Helvetica", size: 12)Warning: if you write a wrong font name, this operation will be simply ignored (it won't be used the default font with...

View Article



Answer by Sagar Rathode for How to Change Font Size of Cell in uitableview

simple one myLabel.font = [UIFont boldSystemFontOfSize:14];

View Article

Answer by StinkyCat for How to Change Font Size of Cell in uitableview

Another simple one: cell.textLabel.font = [cell.textLabel.font fontWithSize:19];this way you change only the font size mantaining all the font format.

View Article

Answer by Robin for How to Change Font Size of Cell in uitableview

Or if you just want to change the font size you can use cell.textLabel.font = [UIFont systemFontOfSize:13.0f];

View Article

Answer by visakh7 for How to Change Font Size of Cell in uitableview

You can trycell.textLabel.font = [UIFont boldSystemFontOfSize:yourSize];orcell.textLabel.font = [UIFont systemFontOfSize:yourSize];

View Article


Answer by Praveen S for How to Change Font Size of Cell in uitableview

UIFont *myFont = [ UIFont fontWithName: @"Arial" size: 18.0 ];cell.textLabel.font = myFont;UIFont reference

View Article

Answer by Warrior for How to Change Font Size of Cell in uitableview

Try thiscell.textLabel.font=[UIFont systemFontSize:15.0f];All the best.

View Article

Answer by saturngod for How to Change Font Size of Cell in uitableview

Change font size and font family.cell.textLabel.font=[UIFont fontWithName:@"Arial" size:16];change font sizecell.textLabel.font=[UIFont systemFontOfSize:22.0];

View Article


How to Change Font Size of Cell in uitableview

I tried this, but it is not working.cell.textLabel.adjustsFontSizeToFitWidth=NO;cell.textLabel.minimumFontSize=6;I need a code snippet.

View Article

Browsing latest articles
Browse All 9 View Live




Latest Images