Swift使用来自其他控制器的视图作为uitableview的背景

时间:2015-05-19 17:27:47

标签: uitableview swift

我是swift的新手,我正在尝试创建一个带有表视图的应用程序,该应用程序可以使用另一个UIView控制器的视图。

  1. 可行吗?
  2. 如果是这样请帮助我,我已经为下面的主控制器附加了我的代码。如果有任何问题,请告诉我?
  3. 非常感谢你。

    import UIKit
    
    class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {
    
    @IBOutlet weak var tableView: UITableView!
    var numbers:[String] = []
    let vc = bgViewController()
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.
    
        tableView.backgroundView = vc.view
    }
    
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
    
    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 1
    }
    
    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        if(numbers.count == 0){
            tableView.backgroundView?.hidden = false
            println("1")
        }
        else{
            tableView.backgroundView?.hidden = true
        }
        return numbers.count
    }
    
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! UITableViewCell
    
        return cell
    }
    
    
    }
    

1 个答案:

答案 0 :(得分:0)

import UIKit

class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {

@IBOutlet weak var tableView: UITableView!
var numbers:[String] = []
var vc: bgViewController!
override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
vc = self.storyboard.instantiateViewControllerWithIdentifier("bgViewController") as! bgViewController

    tableView.backgroundView = vc.view
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return 1
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if(numbers.count == 0){
        tableView.backgroundView?.hidden = false
        println("1")
    }
    else{
        tableView.backgroundView?.hidden = true
    }
    return numbers.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! UITableViewCell

    return cell
}


}

在attribure检查器中将故事板标识符提供为bgViewController。