I was able to change my font color but I also need to change font size, how can I accomplish that? Here\'s my code for chaning the color,
- (NSAttributedStr
let textLabel = view as? UILabel ?? { let label = UILabel() label.font = UIFont.boldSystemFontOfSize(16) label.textAlignment = .Center return label }() textLabel.text = Array(componentDataSources[component].keys)[row] return textLabel