mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-28 20:26:57 +02:00
New Chat screen: Patch chat picture option
This commit is contained in:
@@ -362,14 +362,16 @@
|
||||
}
|
||||
else if (indexPath.row == 1)
|
||||
{
|
||||
cell = [tableView dequeueReusableCellWithIdentifier:@"roomPictureCell"];
|
||||
if (!cell)
|
||||
MXKTableViewCellWithLabelAndImageView *roomPictureCell = [tableView dequeueReusableCellWithIdentifier:[MXKTableViewCellWithLabelAndImageView defaultReuseIdentifier]];
|
||||
if (!roomPictureCell)
|
||||
{
|
||||
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"roomPictureCell"];
|
||||
roomPictureCell = [[MXKTableViewCellWithLabelAndImageView alloc] init];
|
||||
}
|
||||
|
||||
cell.textLabel.text = NSLocalizedStringFromTable(@"room_creation_appearance_picture", @"Vector", nil);
|
||||
cell.imageView.image = [UIImage imageNamed:@"logo"];
|
||||
roomPictureCell.mxkLabel.text = NSLocalizedStringFromTable(@"room_creation_appearance_picture", @"Vector", nil);
|
||||
roomPictureCell.mxkImageView.image = [UIImage imageNamed:@"placeholder"];
|
||||
|
||||
cell = roomPictureCell;
|
||||
}
|
||||
}
|
||||
else if (indexPath.section == privacySection)
|
||||
|
||||
Reference in New Issue
Block a user