Добавление двух текстовых меток (одна динамическая и одна статическая) в одну ячейку таблицы

У меня есть табличное представление с пользовательскими ячейками внутри контроллера представления. Моя таблица работает правильно. То, что я пытаюсь сделать, это разработать изображение ниже программно. Где "метка" - это текст, который является пользовательским и изменяется в зависимости от ввода. Как я могу включить эти 2 метки (в cellForRowAtIndexPath:) и определить их положение в ячейке. Изображение содержит 2 разные ячейки таблицы.

Изображение содержит 2 разные ячейки таблицы

Я знаю, как сделать это через раскадровку, но мне нужно сделать это программно, потому что я использую динамические ячейки в xCode 4.5.

Изображение относится к индексным ячейкам 1 и 2. До сих пор мне удавалось включать только одну текстовую метку на ячейку.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {



static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault  reuseIdentifier:CellIdentifier];
}




    switch ([indexPath row])
    {
        case 0:
        {
           // image cell - image resize and centred


            UIImageView *imv = [[UIImageView alloc]initWithFrame:CGRectMake(30,2, 180, 180)];
            imv.image=[UIImage imageNamed:@"test1.jpg"];


            imv.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleBottomMargin;
            [cell.contentView addSubview:imv];

            imv.center = CGPointMake(cell.contentView.bounds.size.width/2,cell.contentView.bounds.size.height/2);

            cell.accessoryType = UITableViewCellAccessoryNone;

            break;
        }
        case 1:
        {


            cell.textLabel.text = @"Name";


            break;
        }

        case 2:
        {
            cell.textLabel.text = @"Manufacturer";

            break;
        }

        case 3:
        {
            cell.textLabel.text = @"Overall Score";

            break;
        }

        case 4:
        {
            cell.textLabel.text = @"Description";
            cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

            break;
        }

        case 5:
        {
            cell.textLabel.text = @"Videos";
            cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

            break;
        }
            }


    return cell;

}

заранее спасибо

1 ответ

Решение

Сначала проверьте стандартные стили UITableViewCell: UITableViewCellStyleDefault, UITableViewCellStyleValue1, UITableViewCellStyleValue2, UITableViewCellStyleSubtitle.

Если вы можете использовать их, вам не нужно создавать подкласс UITableViewCell. В противном случае вам придется сделать именно это и опустить 3 свойства: UIView и 2 UILabel's. Причина в том, что если вы не используете стили ячейки по умолчанию, вы не можете перемещать или добавлять элементы ячейки.

Ваш подкласс UITableViewCell должен иметь следующий код:

@interface UITableViewCellSubClass : UITableViewCell
@property (nonatomic, strong) UIView *view;
@property (nonatomic, strong) UILabel *label1;
@property (nonatomic, strong) UILabel *label2;
@end

@implementation UITableViewCellSubClass
@synthesize view;
@synthesize label1;
@synthesize label2;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
    view = [[UIView alloc] initWithFrame:self.frame];
    [self addSubview:view];
    // initiate label1 with position (10,10,150,20)
    label1 = [[UILabel alloc] initWithFrame:CGRectMake(10,10,150,20)];
    // initiate label2 with position (170,10,150,20)
    label2 = [[UILabel alloc] initWithFrame:CGRectMake(170,10,150,20)];
    [view addSubview:label1];
    [view addSubview:label2];
}
return self;
}
@end

Затем вы можете вернуть это в свой метод cellForRowAtIndex: и в основном:

UITableViewCellSubclass *cell = [[UITableViewCellSubclass alloc] initWithStyle:UITableViewCellDefault reuseIdentifier:@"cell"];
[cell.label1 setText:@"text"];
[cell.label2 setText:@"more text"];

Надеюсь, это поможет, и не забудьте #import "UITableViewCellSubClass.h"

Другие вопросы по тегам