I know that you previously changed the font size of the cell as follows:
cell.font = [UIFont boldSystemFontOfSize:18];
I use a cell that is init'd with a UITableViewCellStyleSubtitle style. How to change font size of textlabel and detailtextlabel of this cell type?
cell.textLabel.font = [UIFont boldSystemFontOfSize:18];
3.0 the UITableViewCell API has changed. I would suggest reading it in the docs as there are some deprecated methods
You can have the main font settings in a variable and assign them if necessary
UIFont *cellFont = [UIFont fontWithName:@"Arial" size:10]; cell.textLabel.font = cellFont;
Source: https://habr.com/ru/post/1717852/More articles:Validating a C # string as a valid XML schema anyURI - c #Опция "startproject" исчезла из django-admin.py - djangocan we lock the directory? - c #Getting a change in system clock in C # - c #Replacing an item in memcached without changing the expiration date - replaceTrying to minimize table height (TABLE, TBODY and offset) - htmlHowTo: Using MvcContrib.Pagination without Using MvcContrib.Grid View - c #SCOPE_IDENTITY And instead of using the Insert trigger - sqlDoctrine: set model values as an array - phpIs it wise to use the same xib in the UINavigationController view and the modal view? - objective-cAll Articles