Ensure that home view label wraps by word.

This commit is contained in:
Matthew Chen 2018-06-01 09:39:41 -04:00
parent 69b5272547
commit 39e12e1a63

View file

@ -223,6 +223,7 @@ NSString *const kArchivedConversationsReuseIdentifier = @"kArchivedConversations
// Let the label use as many lines as needed. It will very rarely be more than 2 but may happen for verbose locs.
[emptyBoxLabel setNumberOfLines:0];
emptyBoxLabel.lineBreakMode = NSLineBreakByWordWrapping;
[emptyBoxLabel autoPinLeadingToSuperviewMargin];
[emptyBoxLabel autoPinTrailingToSuperviewMargin];