如何在tableview单元格中重复图像?。只有5个图像我只想重复图像,它应该只包含100行

时间:2018-05-23 07:16:35

标签: ios uitableview swift3

class InfotableViewController: UIViewController,UITableViewDelegate,UITableViewDataSource{
let myActivityIndicator = UIActivityIndicatorView()

var name = [String]()
var imagearray=[UIImage]()

@IBOutlet weak var table: UITableView!

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 5
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    return 150
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {


    let cell = table.dequeueReusableCell(withIdentifier: "cell") as! profileTableViewCell
   cell.tableimage.image = nil;
    cell.tableimage.image = imagearray[indexPath.row] as! UIImage
    cell.tablelabel.text = name[indexPath.row] as! String
    self.myActivityIndicator.stopAnimating()
    return cell

}

2 个答案:

答案 0 :(得分:2)

你应该这样做,

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 100
}

这个,

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = table.dequeueReusableCell(withIdentifier: "cell") as! profileTableViewCell
    cell.tableimage.image = nil;
    let index = indexPath.row%5
    cell.tableimage.image = imagearray[index] as! UIImage
    cell.tablelabel.text = name[indexPath.row] as! String
    self.myActivityIndicator.stopAnimating()
    return cell

}

答案 1 :(得分:0)

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

    let cell = tableView.dequeueReusableCell(withIdentifier: "cell1")

    cell?.textLabel?.text = (list1[indexPath.row % list1.count] 

    cell?.imageView?.image = (list1[indexPath.row  % list1.count] 

    return cell!

}