I encountered the following code in others' project:
_titleLabel = ({
UILabel *label = [UILabel new];
label.translatesAutoresizingMaskIntoConstraints = NO;
label.lineBreakMode = NSLineBreakByTruncatingTail;
label.adjustsFontSizeToFitWidth = YES;
label.textAlignment = NSTextAlignmentLeft;
label.numberOfLines = 1;
label.textColor = [UIColor whiteColor];
label.font = [UIFont fontWithName:@"HelveticaNeue" size:14.0f];
label;
});
See this usage for the first time, what is it about?