尝试将nib中的tableview添加到storyboard视图控制器

时间:2015-10-08 04:57:47

标签: ios swift storyboard tableview nib

我正在尝试将nib中的tableview添加到storyboard中的viewcontroller,因此我可以执行segues。目前它没有将tableview添加到storyboard viewcontroller。下面是xib的代码。

class View1: UIViewController, UITableViewDataSource, UITableViewDelegate {

@IBOutlet weak var table1: UITableView!

 override func viewDidLoad() {
    super.viewDidLoad()
    self.loadViewFromNib()
 }



func loadViewFromNib(){
    NSBundle.mainBundle().loadNibNamed("View1", owner: self, options: nil)


  }

  func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

   self.performSegueWithIdentifier("showArtists", sender:indexPath)

    print(indexPath.row)
}
}

0 个答案:

没有答案