2016-06-15 7 views

Antwort

2

Zum Beispiel können Sie es wie folgt programmatisch Zentrum:

override func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? { 
    if section == 0 { 
    let footerView = UIView(frame: CGRect.zero) 
    footerView.backgroundColor = UIColor.grayColor() 

    let activityView = UIActivityIndicatorView(activityIndicatorStyle: .Gray) 
    footerView.addSubview(activityView) 
    activityView.startAnimating() 

    activityView.translatesAutoresizingMaskIntoConstraints = false 

    NSLayoutConstraint(
     item: activityView, 
     attribute: .CenterX, 
     relatedBy: .Equal, 
     toItem: footerView, 
     attribute: .CenterX, 
     multiplier: 1.0, 
     constant: 0.0 
    ).active = true 

    NSLayoutConstraint(
     item: activityView, 
     attribute: .CenterY, 
     relatedBy: .Equal, 
     toItem: footerView, 
     attribute: .CenterY, 
     multiplier: 1.0, 
     constant: 0.0 
    ).active = true 

    return footerView 
    } else { 
    return nil 
    } 
} 
+0

danke für Hilfe –

Verwandte Themen