问题标签 [uicollectionviewcell]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
16700 浏览

xcode - UICollectionViewCell 将被显示/被显示?

很简单的问题。

是否有通知或委托类型的方法来判断何时显示 UICollectionViewCell 对象?

0 投票
2 回答
4888 浏览

objective-c - 将子视图添加到 UICollectionViewCell 时出现意外行为

我目前在向 UICollectionViewCell 添加子视图时遇到了一个奇怪的问题,但仅在某些情况下。

这是场景:

我有一个“容器”视图,它符合带有嵌套视图的非常特定的协议 (ADGControl),通常是 UIKit 控件子类,即 MyCustomTextField:用于自定义控件的 UITextField。

“容器”视图公开了一个名为“innerControlView”的属性,它持有对自定义控件的强引用,这是我试图作为子视图添加到单元格内容视图的内容。

这是代码:

正如您在上面的代码注释中看到的那样,每当我尝试直接添加一个 UIKit 控件(textField)时,它都可以正常工作。但是,一旦我尝试添加我的自定义控件([control innerControlView],我就会在此处的视频剪辑中看到意外行为:http: //media.shinywhitebox.com/ryno-burger/ios-simulator-ios-模拟器-ipad-ios-a

上面的链接只是一个简短的 23 秒视频剪辑,以更好地展示我得到的“意外行为”。

如果有人能指出我做错了什么问题可能是什么,我将不胜感激。

谢谢

0 投票
2 回答
1241 浏览

ios - 加入 UICollectionViewCell 之类的 HTML 行跨度表?

是否有可能像 HTML 单元格内容一样在 iOS 中加入 UICollectionViewCells 可以加入 rowspan 或 colspan?

0 投票
1 回答
1769 浏览

ios - iOS:如何更改 UICollectionViewCell 的方向?

UICollectionViewController当用户转动他们的 iPad 以便将其置于横向时,我会加载一个。我遇到的问题是我UICollectionViewCell的 s 仍在加载,就好像它是纵向的一样。我UICollectionViewController在 Interface Builder 中将其设置为横向,并且我使用了一个名为CollectionViewCell. 每个单元格只包含一个图像和一个标签。

我应该在 Interface Builder 或我的代码中做些什么吗?我尝试使用CGAffineTransformationMakeRotation,但这没有帮助。如果其他人以前遇到过这种情况,我将非常感激!非常感谢!

这里有一些代码供参考:

0 投票
2 回答
28775 浏览

ios - UICollectionView registerClass: forCellWithReuseIdentifier 方法会破坏 UICollectionView

方法的作用是registerClass:forCellWithReuseIdentifier:什么?根据 Apple 的开发人员文档,它应该

“注册一个用于创建新集合视图单元格的类。”

当我尝试在我的项目中使用它时,我得到了一个黑色的集合视图。当我删除它时,一切正常。

0 投票
1 回答
820 浏览

nsindexpath - UICollectionView cellForRow 崩溃

您好,我无法在 UICollectionView 的索引路径获取自定义对象...下面是我的代码。

我正在崩溃

[玩家名字:]:unrecognized selector sent to instance

有什么建议么?

0 投票
3 回答
3876 浏览

objective-c - ActivityIndi​​cator 不会停止动画,也不会从 UICollectionViewCell 中的超级视图中删除

我正在尝试实现UICollectionView和显示图像。我正在使用SDWebimage它在 tableviewcells 中完美运行,但是当我尝试在其中使用它时,UICollectionviewCell它不会停止并删除活动指示器。如果没有下载的图像,它会放置占位符图像。我不确定可能导致此问题的 tableviewcell 和 collectionviewcell 之间有什么区别。

这是代码:

更新:

当我做NSLog(@"activity indicator should be removed %@,activityIndicator);

我得到这个输出:

它显示它UIActivityindicator是隐藏的,但它仍然显示在图像的顶部

0 投票
1 回答
7454 浏览

ios - iOS 单元格上不显示阴影

我正在使用 UICollectionView 在主视图中生成多个缩略图。

这工作正常,我可以在单元格周围放置边框以及应用边框(角)半径。

唯一似乎没有坚持的是每个单元格的阴影。

这是我的代码

你知道我做错了什么以及我可以做些什么来让阴影显示出来吗?

0 投票
1 回答
6664 浏览

ios - UICollectionView 更改布局 - 更改单元格

我有一个 UICollectionView 使用UICollectionViewDelegateFlowLayout. 我添加了一种在点击单元格时更改布局的方法setCollectionViewLayout

所有单元格都有一个带有文本的文本标签,我想在更改布局时清空每个单元格上的所有文本标签。实现这一目标的最佳方法是什么?

谢谢,

0 投票
2 回答
8570 浏览

ios - Animate uicollectionview cells on selection

I have created a customlayout and set my cells position attribute in layoutAttributesForItemAtIndexPath like this

I would like to animate a cell when it is selected. replicating the kind of animations we get with the initialLayoutAttributesForAppearingItemAtIndexPath & finalLayoutAttributesForDisappearingItemAtIndexPath.

I'd like to do this when a cell is selected and de-selected.

so for instance:

Cell A is in position 0,0. Cell B is in position 50,100. If I select cell B I'd like to animate it to 0,0. and at the same time animate cell A to 50,100. basically switching positions, but animated.