Room Settings: Fix rendering of the room topic.

This commit is contained in:
giomfo
2016-07-01 15:50:37 +02:00
parent ab563b96a8
commit 55ecbfd527
4 changed files with 99 additions and 19 deletions
@@ -16,9 +16,14 @@
#import "MXKTableViewCell.h"
@interface TableViewCellWithLabelAndLargeTextView : MXKTableViewCell
@interface TableViewCellWithLabelAndLargeTextView : MXKTableViewCell <UITextViewDelegate>
@property (strong, nonatomic) IBOutlet UILabel *mxkLabel;
@property (strong, nonatomic) IBOutlet UITextView *mxkTextView;
@property (strong, nonatomic) IBOutlet UILabel *label;
@property (strong, nonatomic) IBOutlet UITextView *textView;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *labelTrailingMinConstraint;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *textViewWidthConstraint;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *textViewTrailingConstraint;
@end