- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 swift 和 XCode 6.3.1。我在 Storyboard中使用静态单元编辑了 TableView Controller 。为了对标签和 socket 进行编程,我创建了一个新的 UITableViewController Cocoa Touch 文件,并定义了我刚刚创建的 Cocoa Touch 文件的 View Controller 类。然而,一旦我声明了该类,我在 Storyboard中编辑的任何内容都不会出现在模拟器中。
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
}
有什么办法可以解决这个问题吗?
最佳答案
删除创建文件时 XCode 生成的三个 tableview
函数。
前两个函数决定表格将有多少个部分和行。现在你说你的表有 0 个部分,所以这正是你得到的 - 什么也没有。由于您有静态单元格,因此您不需要这些函数,因为该数字是您在 Storyboard中固定的。如果您有由代码生成的动态单元格,您可能不知道总共有多少个部分和单元格,因此您需要使用这些函数。
第三个函数将使用单元格标识符来格式化动态生成的单元格,但同样,您不需要它,因为单元格是固定的(静态)
关于uitableview - 在 Storyboard中和定义 VC 类之后编辑 UITableViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30677993/
在这段代码中,我想知道在 else block 中执行的代码和在 if block 之后执行的代码有什么区别? #include using namespace std; int digits(in
我有这样的场景,比如我需要运行一个位于 12.34.567 的 API curl 请求,登录后我必须再登录一台主机 98.76.543。 登录到第二个主机后,我必须运行curl -XPOST -H"C
我是一名优秀的程序员,十分优秀!