Java - 不支持但错误消息

时间:2017-07-27 17:31:20

标签: java notsupportedexception database-connectivity

这是我的一个框架代码的一部分:

@IBOutlet weak var table: UITableView!

override func viewDidLoad() {
    super.viewDidLoad()

    // Don't forget to set dataSource and delegate for table
    table.dataSource = self
    table.delegate = self

   // Set automatic dimensions for row height
    // Swift 4.2 onwards
    table.rowHeight = UITableView.automaticDimension
    table.estimatedRowHeight = UITableView.automaticDimension


    // Swift 4.1 and below
    table.rowHeight = UITableViewAutomaticDimension
    table.estimatedRowHeight = UITableViewAutomaticDimension

}



// UITableViewAutomaticDimension calculates height of label contents/text
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    // Swift 4.2 onwards
    return UITableView.automaticDimension

    // Swift 4.1 and below
    return UITableViewAutomaticDimension
}

我在这里面临两个问题。

  1. 我无法执行此框架。它被编译但没有运行。

  2. 但是,它可以从我的其他框架访问(点击登录框架上的按钮时,此框架打开)。然后,在单击此框架中的按钮时,它会生成错误消息:"尚不支持"

  3. 我已删除了@param args注释和"抛出新的UnsupportedOperationException("尚不支持。")。它仍然无法正常工作。

    请帮忙。谢谢。

0 个答案:

没有答案