我正在尝试将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)
}
}