是否可以在 UIScrollView 中添加 UITableView?

Posted

技术标签:

【中文标题】是否可以在 UIScrollView 中添加 UITableView?【英文标题】:Is it possible to add UITableView in UIScrollView? 【发布时间】:2017-12-28 11:51:00 【问题描述】:

前两个工作得很好,但是当水平滚动到第三个视图即表格视图时,数据没有得到填充。我不是我的代码出了什么问题,或者无法在滚动视图中实现表格视图?

下面提到了ScrollViewController代码-

ScrollViewController

import UIKit

class ViewController: UIViewController 

    var land = LandlordList()
    var prop = PropertyList()

    @IBOutlet weak var myScrollview: UIScrollView!
    override func viewDidLoad() 
        super.viewDidLoad()


        let v1:ContactLandlord = ContactLandlord(nibName: "ContactLandlord", bundle: nil)
        let v2:ContactLandlord2 = ContactLandlord2(nibName: "ContactLandlord2", bundle: nil)
        let v3: PropertyTableVC = PropertyTableVC(nibName:"PropertyTableVC", bundle: nil)

        self.addChildViewController(v1)
        self.myScrollview.addSubview(v1.view)
        v1.didMove(toParentViewController: self)

        self.addChildViewController(v2)
        self.myScrollview.addSubview(v2.view)
        v2.didMove(toParentViewController: self)

        self.addChildViewController(v3)
        self.myScrollview.addSubview(v3.view)
        v3.didMove(toParentViewController: self)

        self.myScrollview.contentSize = CGSize(width: self.view.frame.width * 3, height: self.view.frame.size.height)

        var v2frame: CGRect = v1.view.frame
        v2frame.origin.x = self.view.frame.width
        v2.view.frame = v2frame

        var v3frame:CGRect = v2.view.frame
        v3frame.origin.x = self.view.frame.width * 2
        v3.view.frame = v3frame

       v1.code.text = land.code
    v1.titlelbl.text = land.title
        v1.fname.text = land.firstName
        v1.mname.text = land.middleName
        v1.lname.text = land.lastName
        v1.salutation.text = land.salutation
        v1.add1.text = land.address1
         v1.add2.text = land.address2
        v1.add3.text = land.address3
        v1.city.text = land.city
        v1.area.text = land.area
        v1.cluster.text = land.cluster

        v2.email.text = land.email
        v2.aemail.text = land.aemail
        v2.cemail.text = land.certificationEmail
        v2.memail.text = land.certificationEmail
        v2.contact.text = land.contact
        v2.hcontact.text = land.homeNumber
        v2.wcontact.text = land.workNumber
        v2.fcontact.text = land.faxNumber

       let v4 = v3.propertyTabel.dequeueReusableCell(withIdentifier: "Cell") as? PropertyCell
        v4?.propertyCodeLbl.text = prop.code
        v4?.addressLbl.text = prop.address1 
    

下面提到了PropertyTableVC -

PropertyTableVC

import UIKit
import Alamofire

class PropertyTableVC: UITableViewController 


    @IBOutlet var propertyTabel: UITableView!

    let URL_Landlord_Property_List = "http://127.0.0.1/source/api/LandlordPropertyList.php"
    var count: Int = 0
    var landlordPropertyArray: [PropertyList]? = []

    override func viewDidLoad() 
        super.viewDidLoad()

        propertyTabel.dataSource = self
        propertyTabel.delegate = self
        fetchData()
        let nibName = UINib(nibName: "PropertyCell", bundle:nil)
        self.propertyTabel.register(nibName, forCellReuseIdentifier: "Cell")
    

    func fetchData()
        let urlRequest = URLRequest(url: URL(string: URL_Landlord_Property_List)!)
        let task = URLSession.shared.dataTask(with: urlRequest)  (data, response, error) in
            if error != nil
                print(error!)
                return
            
            print(data!)
            self.landlordPropertyArray = [PropertyList]()
            self.count = (self.landlordPropertyArray?.count)!
            do
                let json = try JSONSerialization.jsonObject(with: data!, options: .mutableContainers) as! [String: AnyObject]

                if let datafromjson = json["landlords_property_list"] as? [[String: AnyObject]] 
                    print(datafromjson)
                    for data in datafromjson
                        var property = PropertyList()
                        if let id = data["ID"] as? Int,let code = data["Code"] as? String, let address1 = data["Address"] as? String
                        
                            property.id = id
                            property.code = code
                            property.address1 = address1

                        
                        self.landlordPropertyArray?.append(property)
                    
                    print(self.landlordPropertyArray)
                    DispatchQueue.main.async 
                        self.propertyTabel.reloadData()
                    
                

            catch let error 
                print(error)
            
        
        task.resume()
    

    override func numberOfSections(in tableView: UITableView) -> Int 
        return 1
    

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int 
        return (landlordPropertyArray?.count)!
    

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 
        // Configure the cell...
        let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! PropertyCell
        cell.propertyCodeLbl.text = self.landlordPropertyArray?[indexPath.item].code
        cell.addressLbl.text = self.landlordPropertyArray?[indexPath.item].address1
        return cell
    


【问题讨论】:

你给tableview添加delegate和DataSource了吗?? 是的。我已将数据源和委托都添加到表视图中。 @Saurabh 这样做 -> class ViewController : UIViewController ,UITableViewDelegate,UITableViewDataSource 顺便说一句,我在任何地方都没有看到 tableview @dahiya_boy 好的,我会在我的代码中尝试一下,然后告诉你。我已经创建了一个表格视图。 【参考方案1】:

tableView中的数据只有符合UITableViewDataSourceUITableViewdelegate才会加载。

使用这个,并在课堂上有numberOfRows()cellForRowAtIndexPath()

你肯定会得到填充的tableView

【讨论】:

这肯定是问题的一部分,但仍需要调整大小才能工作 @saurabh 你的类在哪里实现 tableView 委托方法。 我在我的问题中添加了新代码,请查看@MadhurDiwan let v4 = v3.propertyTabel.dequeueReusableCell(withIdentifier: "Cell") as? PropertyCell v4?.propertyCodeLbl.text = prop.code v4?.addressLbl.text = prop.address1 PropertyTableVC里的数据都填好了,那这是干什么用的? 即使我评论这些行也没有任何区别。

以上是关于是否可以在 UIScrollView 中添加 UITableView?的主要内容,如果未能解决你的问题,请参考以下文章

UIScrollView 一个分页器

将 UIViewController 添加到 UIScrollView

iOS开发UI篇—UIScrollView控件实现图片缩放功能

UIScrollview 是不是需要在视图上?

UI基础 - UIScrollView

无法让 UIScrollView 工作