在情节提要中编辑 UITableViewController 并在定义 VC 类之后
Posted
技术标签:
【中文标题】在情节提要中编辑 UITableViewController 并在定义 VC 类之后【英文标题】:Edited UITableViewController in storyboard and after defining the VC class 【发布时间】:2015-08-21 01:56:12 【问题描述】:我正在使用 swift 和 XCode 6.3.1。我在情节提要中使用静态单元格编辑了一个表格视图控制器。想要对标签和插座进行编程,我创建了一个新的 UITableViewController Cocoa Touch File 并定义了视图控制器类,即我刚刚制作的 Cocoa Touch File。但是,一旦我宣布了课程,我在情节提要中编辑的任何内容都不会出现在模拟器中。
import UIKit
class TableViewController: UITableViewController
@IBOutlet weak var distanceSliderLbl: UILabel!
@IBOutlet weak var distanceSlider: UISlider!
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()
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 0
@IBAction func distanceSlider_Slide(sender: AnyObject)
var currentValue = Int(distanceSlider.value)
distanceSliderLbl.text = "\(currentValue)"
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath) as! UITableViewCell
// Configure the cell...
return cell
有没有办法解决这个问题?
【问题讨论】:
我已经添加了上面的代码。谢谢。 这看起来像 ***.com/questions/9993669/… 的副本 【参考方案1】:删除创建文件时 XCode 生成的三个 tableview
函数。
前两个函数决定了您的表格将有多少节和行。现在你说你的表有 0 个部分,所以这正是你得到的——什么都没有。由于您有静态单元格,因此您不需要这些功能,因为数字由您在情节提要中固定。如果您有由代码生成的动态单元格,您可能不知道总共有多少部分和单元格,因此您将使用这些函数。
第三个函数将使用单元格标识符来格式化动态生成的单元格,但同样,您不需要它,因为单元格是固定的(静态)
【讨论】:
以上是关于在情节提要中编辑 UITableViewController 并在定义 VC 类之后的主要内容,如果未能解决你的问题,请参考以下文章
编辑情节提要时 Xcode Interface Builder 崩溃
Xcode 4 不允许我打开在 Xcode 5 中编辑的情节提要