- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我是iOS编程新手。现在我不使用 storyboard
创建一个示例应用程序,我为滚动方向是垂直的主类实现了 UICollectionView
。我为水平方向添加了另一个 UICollectionView
的特定单元格。问题是 cell
水平滚动方向没有推送到我点击它的另一个 View Controller 。
这是我在 AppDelegate
中设置的 rootViewController
window = UIWindow(frame: UIScreen.main.bounds)
window?.makeKeyAndVisible()
let navigation = UINavigationController(rootViewController: CategoryController())
window?.rootViewController = navigation
这是我实现的 CategoryController
tableView
tableView.register(TableCell.self, forCellReuseIdentifier: cellId)
override func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 5
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath)
return cell
}
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 120
}
对于tableView
,当我想导航到特定的 Controller 时,当我点击特定的单元格时工作正常
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print(indexPath.item)
let view = DetailEachCellController()
navigationController?.pushViewController(view, animated: true)
}
问题是,在 DetailEachCellController
中,我使用 UICollectionView
列出一些数据,当我点击特定单元格时,没有导航到新 Controller
此处 DetailEachCellController
为 UIViewController
var collectionDetailView: UICollectionView!
collectionDetailView.register(DetailContactCell.self, forCellWithReuseIdentifier: cellIdContact)
collectionDetailView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: cellIdContent)
func setupCollectionView() {
collectionDetailView.topAnchor.constraint(equalTo: detailContent.topAnchor).isActive = true
collectionDetailView.widthAnchor.constraint(equalTo: detailContent.widthAnchor).isActive = true
collectionDetailView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true
collectionDetailView.backgroundColor = .white
}
func callAction() {
print("pushing view")
let view = UIViewController()
self.navigationController?.pushViewController(view, animated: true)
}
这里是 UICollectionViewFlowLayout
的委托(delegate)
extension DetailEachCellController : UICollectionViewDelegateFlowLayout, UICollectionViewDataSource {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return 2
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
if indexPath.item == 0 {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellIdContact, for: indexPath)
return cell
}
else {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellIdContent, for: indexPath)
cell.backgroundColor = .blue
return cell
}
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
if indexPath.item == 1 {
return CGSize(width: view.frame.width, height: 250)
}
return CGSize(width: view.frame.width, height: 120)
}
}
这里是 DetailContactCell
,我在其中添加了一些按钮供用户点击,并在下一个 View 中添加了更多按钮,但它并没有移动,而是调用了该函数。
class DetailContactCell: UICollectionViewCell {
var eachCellController: DetailEachCellController?
lazy var callButton: UIButton = {
let button = UIButton()
button.translatesAutoresizingMaskIntoConstraints = false
button.layer.shadowOpacity = 0.25
button.backgroundColor = .white
button.setTitle("CALL", for: .normal)
button.layer.cornerRadius = 10
button.layer.shadowOffset = CGSize(width: 0, height: 10)
button.layer.shadowRadius = 10
return button
}()
lazy var bookButton: UIButton = {
let button = UIButton()
button.translatesAutoresizingMaskIntoConstraints = false
button.layer.shadowOpacity = 0.25
button.backgroundColor = .white
button.layer.cornerRadius = 10
button.layer.shadowOffset = CGSize(width: 0, height: 10)
button.layer.shadowRadius = 10
return button
}()
override init(frame: CGRect) {
super.init(frame: frame)
addSubview(callButton)
addSubview(bookButton)
callButton.centerYAnchor.constraint(equalTo: self.centerYAnchor).isActive = true
callButton.leftAnchor.constraint(equalTo: self.leftAnchor, constant: 15).isActive = true
callButton.widthAnchor.constraint(equalTo: self.widthAnchor, multiplier: 1/2.5).isActive = true
callButton.heightAnchor.constraint(equalToConstant: 60).isActive = true
bookButton.centerYAnchor.constraint(equalTo: self.centerYAnchor).isActive = true
bookButton.rightAnchor.constraint(equalTo: self.rightAnchor, constant: -15).isActive = true
bookButton.widthAnchor.constraint(equalTo: self.widthAnchor, multiplier: 1/2.5).isActive = true
bookButton.heightAnchor.constraint(equalToConstant: 60).isActive = true
self.actionButton()
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
func actionButton() {
callButton.addTarget(self, action: #selector(callBtn), for: .touchUpInside)
}
@objc func callBtn() {
print("calling")
eachCellController = DetailEachCellController()
eachCellController?.callAction()
}
}
最佳答案
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
if indexPath.item == 0 {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellIdContact, for: indexPath) as! DetailContactCell
// Here is line add to `UICollectionViewFlowLayout`
cell.eachCellController = self
return cell
}else {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellIdContent, for: indexPath)
cell.backgroundColor = .blue
return cell
}
}
关于ios - 以编程方式从 CollectionView 单元推送 viewController 不起作用 - swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51475127/
我正在尝试将多个值放入数组中。 当我使用时: csvData.push('data[0][index],data[1][index],data[2][index],data[3][index]');
我想在数组声明中直接使用函数 push(),但它不能正常工作。在我的示例中,我的数组返回值 2 : var j = ["b"].push("a"); document.write(j); // ret
我编写了以下Powershell,它为所选文件夹中的所有驱动程序创建了一个bat安装程序,然后应重新启动PC。 New-Item C:\Tools\Drivers\DellLatitude3450.b
例: $ git clone git@gitlab:carlos/test.git Cloning into 'asd'... ssh: connect to host gitlab port 22:
我正在构建一个具有数组类型属性的对象数组: 这里是一些简化的代码: var _data = []; for(var i=0;i<10;i++) { var element = {
我有一个简单的 PHP/MySql 应用程序,它通常会选择几个数据库之一(假设每个客户一个)进行操作。但是,经常调用访问公共(public)数据库的实用程序函数。 我不想在我的代码中散布 USE 子句
我在推送 View Controller 时遇到问题。这就是我所做的:单击一个按钮,我使用这段代码添加了一个模态视图,我工作正常: - (void)addAction:(id)sender {
我想为socket can写一个android系统服务器。我目前正在设计这个,想知道是否有任何方法可以在 Linux/POSIX 套接字上的数据是否可用而无需调用 read() 并随时轮询结果的情况下
我正在编写一个 Bootstrap 站点,我想知道这是否可以接受。该网站看起来像我想要的那样,但我想知道这是否是最佳做法? 我采用的方法是对每两个缺失的列使用 1 个偏
删除远程分支是通过: git push origin :master 如果本地在远程之后,则需要完成: git push --force origin :master 但是强制删除例如master 基
假设我有一个 git 服务器。在每次推送时,我都需要启动一个进程,我可以通过一个钩子(Hook)来完成。 需要将进程的标准输出写入执行推送的 git 客户端。这与 Heroku 或 Openshift
我刚刚开始学习 Git,有些事情我无法解决。在我的 Mac 上本地创建和使用 git 存储库后,我可以将副本推送到其他地方的另一台服务器吗?我在防火墙后面,所以不幸的是我无法从另一台机器运行 git
这个问题在这里已经有了答案: warning: remote HEAD refers to nonexistent ref, unable to checkout (13 个答案) 关闭 7 年前。
我已经安装了 SCM Sync 配置插件(0.0.10)来将我的 jenkins 设置保存在我的 git 存储库中。 我已经设置了 git url 存储库但插件没有提交/推送,请看截图 我试过: 私钥
这可能看起来很矛盾,我知道 secret 变更集是私有(private)的,但是如果我想备份这些 secret 变更集怎么办? 我与一些分支并行工作,有时我想插入一个,而不是其他的。为了实现这一点,我
我正在使用 TortoiseHg用于版本控制。提交到本地后,我推送到远程存储库。如何撤消到特定的提交点? 有三个不同的插入,我想恢复到第一个插入。我读到了 Mercurial 回滚和 hg 撤销 命令
我知道以前有人问过这个问题,但我似乎无法理解这件事...... git checkout master git pull git git checkout feature git rebase ori
下面的代码片段中 return { Push:function ..... 的含义是什么?当我用谷歌搜索时,我发现push()方法将新项目添加到数组的末尾,并返回新的长度。所以我不确定什么是push:
我正在使用 Mercurial 1.6。我有一个带有几个子存储库的存储库 (11)。我想将父存储库推送到默认远程存储库,而不推送子存储库。想要这样做的原因包括: 我使用的是 SSH 存储库,需要很长时
我分配了一个按钮来将 segue 推送到另一个 View Controller ,但是当我执行这部分代码时,我得到以下信息: 2014-02-20 10:44:29.357 nar[20244:70b
我是一名优秀的程序员,十分优秀!