diff options
author | Vitaly Takmazov | 2014-01-08 22:52:00 +0400 |
---|---|---|
committer | Vitaly Takmazov | 2014-01-08 22:52:00 +0400 |
commit | c0a5f540950dcf34eb08dc990ec753df6ae98ede (patch) | |
tree | e0b24d483f48a74e74ba296d313ea57ae9cb41cc | |
parent | 6554eb01bfe76b9723c911feddd8b5ea43f46567 (diff) |
Finally fix constraints in MessageCell
-rw-r--r-- | Juick/MessageCell.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Juick/MessageCell.m b/Juick/MessageCell.m index 04a08b3..d396181 100644 --- a/Juick/MessageCell.m +++ b/Juick/MessageCell.m @@ -24,6 +24,7 @@ self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]; if (self) { [self.contentView setBackgroundColor:[UIColor whiteColor]]; + self.contentView.bounds = CGRectMake(0, 0, 320, 999); self.avatar = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 32, 32)]; [self.avatar setBackgroundColor:[UIColor clearColor]]; |