- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将我设计的表格单元格放入我的表格 View 中,该单元格应该显示艺术家的歌曲、专辑图片以及播放按钮,但我无法按照我想要的方式正确布局它。
当前应用布局截图:
我希望所有播放按钮都齐平到表格 View 的右侧,但似乎它忽略了我在表格 View 中放置的约束并且超出了界限。我还想要标签具有的额外空间(如下图链接所示),以便它在整个单元格中留出空间,以便播放按钮可以位于表格 View 单元格的右侧。
当前表格 View 单元格:
这是我的 View Controller 布局的图片以及我对它们施加的约束。如果有什么我可以做和改变的,请告诉我。谢谢。
查看 Controller 布局:
最佳答案
尝试以编程方式执行此操作,对于此示例,我将 numberOfRowsInSection 设置为返回 20,在 UITableViewCell 类中设置对象:
let containerViw: UIView = {
let myView = UIView()
myView.translatesAutoresizingMaskIntoConstraints = false
myView.heightAnchor.constraint(equalToConstant: 100).isActive = true
myView.widthAnchor.constraint(equalToConstant: 100).isActive = true
return myView
}()
lazy var buttonPlay: UIButton = {
let button = UIButton(type: .system)
let image = UIImage(systemName: "play.circle")
button.setBackgroundImage(image, for: .normal)
button.addTarget(self, action: #selector(handlePlay), for: .touchUpInside)
button.translatesAutoresizingMaskIntoConstraints = false
return button
}()
let dummyLabel: UILabel = {
let label = UILabel()
label.text = "Dummy Label"
label.font = .systemFont(ofSize: 16, weight: .regular)
label.textColor = .black
return label
}()
let finestraBackground: UIImageView = {
let imageView = UIImageView()
imageView.backgroundColor = .red
imageView.image = UIImage(named: "yourImage")?.withRenderingMode(.alwaysOriginal)
imageView.translatesAutoresizingMaskIntoConstraints = false
imageView.heightAnchor.constraint(equalToConstant: 100).isActive = true
imageView.widthAnchor.constraint(equalToConstant: 100).isActive = true
imageView.layer.cornerRadius = 50
imageView.layer.masksToBounds = true
return imageView
}()
现在在 UITableViewCell.CellStyle 设置 stackView 并添加约束:
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
backgroundColor = .white
containerViw.addSubview(buttonPlay)
buttonPlay.heightAnchor.constraint(equalToConstant: 50).isActive = true
buttonPlay.widthAnchor.constraint(equalToConstant: 50).isActive = true
buttonPlay.centerYAnchor.constraint(equalTo: containerViw.centerYAnchor).isActive = true
buttonPlay.centerXAnchor.constraint(equalTo: containerViw.centerXAnchor).isActive = true
let stackView = UIStackView(arrangedSubviews: [finestraBackground, dummyLabel, containerViw])
stackView.distribution = .fillProportionally
stackView.spacing = 10
stackView.translatesAutoresizingMaskIntoConstraints = false
contentView.addSubview(stackView)
stackView.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 10).isActive = true
stackView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor, constant: 10).isActive = true
stackView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: -10).isActive = true
stackView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: -10).isActive = true
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
最后一步设置播放功能:
@objc fileprivate func handlePlay() {
print("Play...")
}
这是结果:
class TableViewCellCustom: UITableViewCell {
let containerViw: UIView = {
let myView = UIView()
myView.translatesAutoresizingMaskIntoConstraints = false
myView.heightAnchor.constraint(equalToConstant: 100).isActive = true
myView.widthAnchor.constraint(equalToConstant: 100).isActive = true
return myView
}()
lazy var buttonPlay: UIButton = {
let button = UIButton(type: .system)
let image = UIImage(systemName: "play.circle")
button.setBackgroundImage(image, for: .normal)
button.addTarget(self, action: #selector(handlePlay), for: .touchUpInside)
button.translatesAutoresizingMaskIntoConstraints = false
return button
}()
let dummyLabel: UILabel = {
let label = UILabel()
label.text = "Dummy Label"
label.font = .systemFont(ofSize: 16, weight: .regular)
label.textColor = .black
return label
}()
let finestraBackground: UIImageView = {
let imageView = UIImageView()
imageView.backgroundColor = .red
imageView.image = UIImage(named: "yourImage")?.withRenderingMode(.alwaysOriginal)
imageView.translatesAutoresizingMaskIntoConstraints = false
imageView.heightAnchor.constraint(equalToConstant: 100).isActive = true
imageView.widthAnchor.constraint(equalToConstant: 100).isActive = true
imageView.layer.cornerRadius = 50
imageView.layer.masksToBounds = true
return imageView
}()
@objc fileprivate func handlePlay() {
print("Play...")
}
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
backgroundColor = .white
containerViw.addSubview(buttonPlay)
buttonPlay.heightAnchor.constraint(equalToConstant: 50).isActive = true
buttonPlay.widthAnchor.constraint(equalToConstant: 50).isActive = true
buttonPlay.centerYAnchor.constraint(equalTo: containerViw.centerYAnchor).isActive = true
buttonPlay.centerXAnchor.constraint(equalTo: containerViw.centerXAnchor).isActive = true
let stackView = UIStackView(arrangedSubviews: [finestraBackground, dummyLabel, containerViw])
stackView.distribution = .fillProportionally
stackView.spacing = 10
stackView.translatesAutoresizingMaskIntoConstraints = false
contentView.addSubview(stackView)
stackView.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 10).isActive = true
stackView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor, constant: 10).isActive = true
stackView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: -10).isActive = true
stackView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: -10).isActive = true
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
更新 , 以编程方式创建带有顶 View 的 tableView 示例,没有 Storyboard
import UIKit
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
let cellId = "cellId"
let tableView = UITableView()
let containerView = UIView()
let dummyImageView = UIImageView()
let artistLabel = UILabel()
override func viewDidLoad() {
super.viewDidLoad()
artistLabel.text = "Artist Name\nArtist Song Name"
artistLabel.font = .systemFont(ofSize: 16, weight: .semibold)
artistLabel.numberOfLines = 0
artistLabel.textColor = .white
dummyImageView.image = UIImage(named: "yourImage")
dummyImageView.contentMode = .scaleAspectFill
dummyImageView.clipsToBounds = true
dummyImageView.translatesAutoresizingMaskIntoConstraints = false
dummyImageView.widthAnchor.constraint(equalToConstant: 150).isActive = true
dummyImageView.heightAnchor.constraint(equalToConstant: 150).isActive = true
dummyImageView.layer.cornerRadius = 75
containerView.backgroundColor = .darkGray
containerView.translatesAutoresizingMaskIntoConstraints = false
tableView.delegate = self
tableView.dataSource = self
tableView.translatesAutoresizingMaskIntoConstraints = false
tableView.register(TableViewCellCustom.self, forCellReuseIdentifier: cellId)
view.addSubview(containerView)
containerView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor).isActive = true
containerView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor).isActive = true
containerView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor).isActive = true
containerView.heightAnchor.constraint(equalToConstant: 200).isActive = true
let stackView = UIStackView(arrangedSubviews: [dummyImageView, artistLabel])
stackView.axis = .horizontal
stackView.spacing = 10
stackView.distribution = .fillProportionally
stackView.translatesAutoresizingMaskIntoConstraints = false
containerView.addSubview(stackView)
stackView.heightAnchor.constraint(equalToConstant: 150).isActive = true
stackView.trailingAnchor.constraint(equalTo: containerView.trailingAnchor, constant: -20).isActive = true
stackView.leadingAnchor.constraint(equalTo: containerView.leadingAnchor, constant: 10).isActive = true
stackView.centerYAnchor.constraint(equalTo: containerView.centerYAnchor).isActive = true
view.addSubview(tableView)
tableView.topAnchor.constraint(equalTo: containerView.bottomAnchor).isActive = true
tableView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor).isActive = true
tableView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor).isActive = true
tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 120
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 20
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! TableViewCellCustom
return cell
}
}
在场景委托(delegate)中激活导航 Controller ,如下所示:
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
guard let windowScene = (scene as? UIWindowScene) else { return }
window = UIWindow(windowScene: windowScene)
// let controller = UINavigationController(rootViewController: ViewController())//if you want navigation controller uncomment that
let controller = ViewController() // if you want navigation Controller COMMENT That
window?.makeKeyAndVisible()
window?.rootViewController = controller
}
或者你可以使用 didSelecrRowAt 方法:
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print("Play...", indexPath.row)
}
关于ios - 表格单元格自动布局的问题没有按照我想要的方式间隔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62378918/
我一直在阅读有关汇编函数的内容,但对于是使用进入和退出还是仅使用调用/返回指令来快速执行,我感到很困惑。一种方式快而另一种方式更小吗?例如,在不内联函数的情况下,在汇编中执行此操作的最快(stdcal
我正在处理一个元组列表,如下所示: res = [('stori', 'JJ'), ('man', 'NN'), ('unnatur', 'JJ'), ('feel', 'NN'), ('pig',
最近我一直在做很多网络或 IO 绑定(bind)操作,使用线程有助于加快代码速度。我注意到我一直在一遍又一遍地编写这样的代码: threads = [] for machine, user, data
假设我有一个名为 user_stats 的资源,其中包含用户拥有的帖子、评论、喜欢和关注者的数量。是否有一种 RESTful 方式只询问该统计数据的一部分(即,对于 user_stats/3,请告诉我
我有一个简单的 api,它的工作原理是这样的: 用户创建一个请求 ( POST /requests ) 另一个用户检索所有请求 ( GET /requests ) 然后向请求添加报价 ( POST /
考虑以下 CDK Python 中的示例(对于这个问题,不需要 AWS 知识,这应该对基本上任何构建器模式都有效,我只是在这个示例中使用 CDK,因为我使用这个库遇到了这个问题。): from aws
Scala 中管理对象池的首选方法是什么? 我需要单线程创建和删除大规模对象(不需要同步)。在 C++ 中,我使用了静态对象数组。 在 Scala 中处理它的惯用和有效方法是什么? 最佳答案 我会把它
我有一个带有一些内置方法的类。这是该类的抽象示例: class Foo: def __init__(self): self.a = 0 self.b = 0
返回和检查方法执行的 Pythonic 方式 我目前在 python 代码中使用 golang 编码风格,决定移动 pythonic 方式 例子: import sys from typing imp
我正在开发一个 RESTful API。其中一个 URL 允许调用者通过 id 请求特定人员的记录。 返回该 id 不存在的记录的常规值是什么?服务器是否应该发回一个空对象或者一个 404,或者其他什
我正在使用 pathlib.Path() 检查文件是否存在,并使用 rasterio 将其作为图像打开. filename = pathlib.Path("./my_file-name.tif") 但
我正在寻找一种 Pythonic 方式来从列表和字典创建嵌套字典。以下两个语句产生相同的结果: a = [3, 4] b = {'a': 1, 'b': 2} c = dict(zip(b, a))
我有一个正在操裁剪理设备的脚本。设备有时会发生物理故障,当它发生时,我想重置设备并继续执行脚本。我有这个: while True: do_device_control() device
做组合别名的最pythonic和正确的方法是什么? 这是一个假设的场景: class House: def cleanup(self, arg1, arg2, kwarg1=False):
我正在开发一个小型客户端服务器程序来收集订单。我想以“REST(ful)方式”来做到这一点。 我想做的是: 收集所有订单行(产品和数量)并将完整订单发送到服务器 目前我看到有两种选择: 将每个订单行发
我知道在 Groovy 中您可以使用字符串调用类/对象上的方法。例如: Foo."get"(1) /* or */ String meth = "get" Foo."$meth"(1) 有没有办法
在 ECMAScript6 中,您可以使用扩展运算符来解构这样的对象 const {a, ...rest} = obj; 它将 obj 浅拷贝到 rest,不带属性 a。 有没有一种干净的方法可以在
我有几个函数返回数字或None。我希望我的包装函数返回第一个不是 None 的结果。除了下面的方法之外,还有其他方法吗? def func1(): return None def func2(
假设我想设计一个 REST api 来讨论歌曲、专辑和艺术家(实际上我就是这样做的,就像我之前的 1312414 个人一样)。 歌曲资源始终与其所属专辑相关联。相反,专辑资源与其包含的所有歌曲相关联。
这是我认为必须经常出现的问题,但我一直无法找到一个好的解决方案。假设我有一个函数,它可以作为参数传递一个开放资源(如文件或数据库连接对象),或者需要自己创建一个。如果函数需要自己打开文件,最佳实践通常
我是一名优秀的程序员,十分优秀!