将标识符添加到segue

时间:2014-10-18 16:04:57

标签: ios xcode swift

我已经从按钮创建了一个segue,但它给了我以下错误。我正在使用Swift和Xcode 6。

/Users/dave_cooljamdesign/Desktop/XcodeDev/findaphysio2/FindaPhysio/FindaPhysio/Base.lproj/Main.storyboard: Segues initiated directly from view controllers must have an identifier

当我从表格视图拖到详细视图时,如何为他们提供标识符?

下面是一些代码,用于显示我在视图控制器中所做的事情

import UIKit
import MapKit

class ClinicsTableViewController:
UITableViewController {
var clinic = [Clinics]()

@IBOutlet var mapView: MKMapView!

override func viewDidLoad() {
    super.viewDidLoad()

    // Uncomment the following line to preserve selection between presentations
    // self.clearsSelectionOnViewWillAppear = false

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem()
    self.clinic = [Clinics(name:"Chocolate")]

    self.tableView.reloadData()

}

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

// MARK: - Table view data source

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    // #warning Potentially incomplete method implementation.
    // Return the number of sections.
    return 0
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    // #warning Incomplete method implementation.
    // Return the number of rows in the section.
    return self.clinic.count
}

   override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
      //ask for a reusable cell from the tableview, the tableview will create a new one if it doesn't have any
    let cell = self.tableView.dequeueReusableCellWithIdentifier("findaphysioCell", forIndexPath: indexPath) as UITableViewCell

    // Get the corresponding candy from our candies array
    let _clinic = self.clinic[indexPath.row]

    // Configure the cell
    cell.textLabel!.text = _clinic.name 
    cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator

    return cell
}
}

2 个答案:

答案 0 :(得分:1)

在故事板上找到segue(视图控制器之间的线条,中间有一个圆圈)并单击它。

enter image description here

然后在实用程序窗格中打开属性检查器并为其指定标识符。

enter image description here

正如gabbler所提到的,快捷键命令 + 选项 + 4 将立即打开属性检查器。

答案 1 :(得分:0)

在故事板中,选择两个视图控制器之间的segue。转到右侧的属性检查器并添加标识符名称。

在您的代码中执行以下操作:

self.performSegueWithIdentifier("setupView", sender: self)

显然可以使用您为segue标识符设置的任何内容更改“setupView”。