Skip to content

Instantly share code, notes, and snippets.

@yuxiangq
Last active August 29, 2015 14:18
Show Gist options
  • Save yuxiangq/96c5ffeb2ab9d718a33e to your computer and use it in GitHub Desktop.
Save yuxiangq/96c5ffeb2ab9d718a33e to your computer and use it in GitHub Desktop.
customCell的初始化控件方法
-(void)initControls{
_contentLabel=[UILabel new];
_contentLabel.translatesAutoresizingMaskIntoConstraints=NO;
_contentLabel.numberOfLines=0;
_contentLabel.lineBreakMode=NSLineBreakByWordWrapping;
[self.contentView addSubview:_contentLabel];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment