Swift-将UIVIewcontroller可变数组访问到UITableViewCell类

时间:2018-11-09 17:35:21

标签: ios swift xcode uitableview

我有一个UIViewController,其中包含UITableView,根据我的逻辑为UITableViewCell创建了一个单独的类,我想为每一行传递数组。因此,无论何时调用方法的单元格,我都创建了一个可变数组并分配了新值。

但是我无法从UITableViewCell

访问可变数组

我使用了以下代码

class PostPage: UIViewController{
    public var imageArray = [String] ()
}

extension PostPage: UITableViewDelegate, UITableViewDataSource {
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 10
    }


    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        if self.UserDatas?.posts.app[indexPath.row].images?.count ?? 0 > 0 {
            let cell:PostImageCell = tablView.dequeueReusableCell(withIdentifier: "PostImageCell") as! PostImageCell
            self.imageArray = self.UserDatas?.posts.app[indexPath.row].images ?? ["String URL"]
            cell.selectionStyle = .none
            return cell
        }
    }

    class PostImageCell: UITableViewCell{
        override func awakeFromNib() {
            super.awakeFromNib()
            var mainClass : ViewController = ViewController()
            let image = self.mainClass.imageArray
        }
    }
}

这是我收到的错误消息,例如“类型为'ViewController'的值没有成员'imageArray'”

3 个答案:

答案 0 :(得分:1)

是的! “类型为'ViewController'的值没有成员'imageArray'”

PostPage 拥有它!

更改此: var mainClass: ViewController = ViewController()

对此: var mainClass: PostPage = PostPage()

该错误将消失。

但是请记住:它是新的初始化对象,并且本身不包含任何内容。

答案 1 :(得分:0)

您的代码无法正常工作。

反之,将数组传递到cellForRow

class PostImageCell: UITableViewCell {
    var imageArray = [String]()
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

   let cell = tableView.dequeueReusableCell(withIdentifier: "PostImageCell") as! PostImageCell
   cell.imageArray = self.UserDatas?.posts.app[indexPath.row].images ?? []
   cell.selectionStyle = .none
   return cell
}

答案 2 :(得分:0)

首先,您没有名为let errorCodestring : String? if let theError = errorCodestring { print(theError) } 的VC。

ViewController

第二,您可以将数组设置为全局

var mainClass : ViewController = ViewController()
let image = self.mainClass.imageArray

然后在所有应用中像这样使用它

class Service {
   static let shared = Service()
   var imageArray = [String] ()
}

或在单元格自定义类中创建另一个

Service.shared.imagArray

并在class PostImageCell: UITableViewCell{ var imageArray = [String] () }

中分配它
cellForRowAt