Центр нижнего колонтитула UILabel в сгруппированном UITableView - Swift

В настоящее время я добавляю информационную страницу в свое приложение и хочу отобразить номер версии приложения по центру в нижнем колонтитуле сгруппированного UITableView. У меня это отображается, но я не уверен, как это сделать.

Я смотрел на использование таблиц viewForFooterInSection; это будет правильный путь, или есть более простой путь?

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

Об экране с выравниванием по левому краю нижнего колонтитула

2 ответа

Решение

Просто добавьте нижний колонтитул к вашему tableView, и он будет размещен внизу, независимо от того, сколько разделов у вас есть

let tableViewFooter = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 50))
            tableViewFooter.backgroundColor = UIColor.greenColor()        
let version = UILabel(frame: CGRectMake(8, 15, tableView.frame.width, 30))
version.font = version.font.fontWithSize(14)
version.text = "Version 1.x"
version.textColor = UIColor.lightGrayColor()
version.textAlignment = .Center;

tableViewFooter.addSubview(version)

tableView.tableFooterView  = tableViewFooter

Если вы хотите добавить нижний колонтитул для каждого раздела

Создать UIView() в вашем tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? метод и добавить метку к этому представлению и центрировать метку в нем.

Пример:

func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
        let view = UIView()

        let version = UILabel(frame: CGRectMake(8, 15, tableView.frame.width, 30))
        version.font = version.font.fontWithSize(14)
        version.text = "Version 1.x"
        version.textColor = UIColor.lightGrayColor()
        version.textAlignment = .Center;

        view.addSubview(version)

        return view
    }

Хм, вы в порядке, этот пример кода поможет вам сделать все правильно.

- (UIView *) tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    static UIView *footerView;

    if (footerView != nil)
        return footerView;

    NSString *footerText = NSLocalizedString(@"Some Display Text Key", nil);

    // set the container width to a known value so that we can center a label in it
    // it will get resized by the tableview since we set autoresizeflags
    float footerWidth = 150.0f;
    float padding = 10.0f; // an arbitrary amount to center the label in the container

    footerView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, footerWidth, 44.0f)];
    footerView.autoresizingMask = UIViewAutoresizingFlexibleWidth;

    // create the label centered in the container, then set the appropriate autoresize mask
    UILabel *footerLabel = [[[UILabel alloc] initWithFrame:CGRectMake(padding, 0, footerWidth - 2.0f * padding, 44.0f)] autorelease];
    footerLabel.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
    footerLabel.textAlignment = UITextAlignmentCenter;
    footerLabel.text = footerText;

    [footerView addSubview:footerLabel];

    return footerView;
}
Другие вопросы по тегам