设置UITableView数据源并在单独的文件中委托 - swift
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置UITableView数据源并在单独的文件中委托 - swift相关的知识,希望对你有一定的参考价值。
如果我想在两个不同的场景中出现相同的基本UITableView,那么为两个表使用一个数据源和委托位置是一个好主意吗?
我想尝试这个,但是当我在IB中选择表视图并尝试将该行拖到UITableView文件的自定义类,甚至是另一个自定义视图控制器时,它将无法连接。似乎只能将当前的View Controller放入表的数据源并委托(?)。
我想知道这是否至少类似于this question,但即使它是,如何在swift中完成(也许有一种新方法可以做到这一点)。
您可以实现自定义类对象,并为此类实现UITableViewDataSource
方法。
@interface MyDataSource : NSObject <UITableViewDataSource>
//...
@end
然后,UITableView
有属性,delegate
和dataSource
。将正确的对象分配给这些属性。
MyDataSource ds = ... ///< Initialize the dataSource object.
self.tableView.dataSource = ds; ///< Let ds be the dataSource of `self.tableView`
self.tableView.delegate = .... ///< Assign the delegate, generally it is `self`.
Swift 4.1。您可以创建从UITableViewDataSource和UITableViewDelegate类继承的单独类。这里我在DataSource类中实现UITableViewDataSource()方法。您需要继承NSObject,这样我们就不必使用@objc和@class关键字,因为UITableViewDataSource是一个Objective-C协议。
import Foundation
import UIKit
class DataSource: NSObject, UITableViewDataSource {
var formData: [FormData]? = nil
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.formData?.count ?? 0
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell")
let label = cell?.contentView.viewWithTag(100) as? UILabel
let type = self.formData![indexPath.row]
label?.text = type.placeHolder
return cell!
}
}
现在我们将DataSource设置为UITableView。如果我们创建单独的类,那么我们必须将数据传递给DataSource类。
class ViewController: UIViewController {
@IBOutlet weak var tblView: UITableView!
var formData: [FormData]? = nil
var dataSource = DataSource()
override func viewDidLoad() {
super.viewDidLoad()
formData = FormData.array
dataSource.formData = formData // Pass data to DataSource class
tblView.dataSource = dataSource // Setting DataSource
}
}
以类似的方式,您可以在单独的类中实现UITableViewDelegate。分离DataSource和Delegate的另一种方法是创建viewController的扩展。即使您可以创建单独的类,您只能为视图控制器定义扩展。在定义扩展时,您不需要传递数据。
class ViewController: UIViewController {
@IBOutlet weak var tblView: UITableView!
var formData: [FormData]? = nil
override func viewDidLoad() {
super.viewDidLoad()
formData = FormData.array
tblView.dataSource = self
}
}
extension ViewController: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.formData?.count ?? 0
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell")
let label = cell?.contentView.viewWithTag(100) as? UILabel
let type = self.formData![indexPath.row]
label?.text = type.placeHolder
label?.backgroundColor = UIColor.gray
return cell!
}
}
每个Tableview都应该有自己的Tableview控制器。这与模型视图控制器设计模式一致。
如果两个表中的数据相同,则可以将公共类用作dataSource。
下面是一个代码示例,显示了UITableView的不同数据源和委托。
Swift中的代码
import UIKit
// MARK: Cell
class ItemCell: UITableViewCell{
var label: UILabel!
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
label = UILabel(frame: CGRect(x: 0, y: 0, width: 200, height: 20))
label.textColor = .black
label.backgroundColor = .yellow
contentView.addSubview(label)
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
// MARK: Main View Controller
class BlueViewController: UIViewController{
var tableView: UITableView!
var myDataSourse: MyTVDataSource!
var myDelegate: MyTVDelegate!
override func viewDidLoad() {
super.viewDidLoad()
self.view.backgroundColor = .blue
tableView = UITableView()
myDataSourse = MyTVDataSource(tableView: tableView)
myDelegate = MyTVDelegate()
myDelegate.presentingController = self
tableView.dataSource = myDataSourse
tableView.delegate = myDelegate
tableView.register(ItemCell.self, forCellReuseIdentifier: "Cell")
self.view.addSubview(tableView)
self.tableView.translatesAutoresizingMaskIntoConstraints = false
NSLayoutConstraint.activate([
tableView.topAnchor.constraint(equalTo: view.topAnchor, constant: 0),
tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor, constant: 0),
tableView.leadingAnchor.constraint(equalTo: view.leadingAnchor, constant: 0),
tableView.trailingAnchor.constraint(equalTo: view.trailingAnchor, constant: 0)
])
}
}
extension BlueViewController: BluePresenting{
func currentSelected(_ indexPath: IndexPath) {
print(indexPath)
}
}
// MARK: TableViewDelegate
protocol BluePresenting: class {
func currentSelected(_ indexPath: IndexPath)
}
class MyTVDelegate: NSObject,UITableViewDelegate{
var presentingController: BluePresenting?
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
presentingController?.currentSelected(indexPath)
}
}
// MARK: TableView DataSource
class MyTVDataSource: NSObject, UITableViewDataSource{
private var tableView: UITableView
private var items = ["Item 1","item 2","item 3","Item 4"]
init(tableView: UITableView) {
self.tableView = tableView
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return items.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = ItemCell(style: .default, reuseIdentifier: "Cell")
cell.label.text = items[indexPath.row]
return cell
}
}
以上是关于设置UITableView数据源并在单独的文件中委托 - swift的主要内容,如果未能解决你的问题,请参考以下文章
在单独的文件中设置 UITableView 数据源和委托 - swift