以编程方式更改UIImage位置

问题描述 投票:0回答:1

我有一个UITableView与部分。我在每个单元格中添加了一个UImage,但它在左侧,如何更改它以使其向右侧移动?

这是我每个单元格的代码:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cells")
    cell?.textLabel?.text = data[indexPath.section].subType[indexPath.row]
    cell?.textLabel?.textAlignment = .right
    cell?.textLabel?.font = UIFont(name: "GESSTwoLight-Light", size: 15)
    cell!.isUserInteractionEnabled = false;
    cell!.imageView?.image = UIImage(named: "username.png")

    return cell!
}

This is my UITableView

swift uiimage position
1个回答
0
投票

你只需要在tableView(_:cellForRowAt:)方法中执行以下操作:

cell.transform = CGAffineTransform(scaleX: -1.0, y: 1.0)
cell.textLabel?.transform = CGAffineTransform(scaleX: -1.0, y: 1.0)
cell.imageView?.transform = CGAffineTransform(scaleX: -1.0, y: 1.0)

这将创建following

积分兑换liau-jian-jiesharing this solution,也可以应用于UIButton。

© www.soinside.com 2019 - 2024. All rights reserved.