我在 iOS 7.1.2 上的 Xcode 6 beta 5 中看到了同样的问题,它以前在 Xcode 5.1.1 中工作。
感谢我的版本控制,我看到了这个小块:
- <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="SCTutorialCell5" id="03V-Y4-Bha" userLabel="tutorial5" customClass="SCTutorialCell">
546
- <rect key="frame" x="1280" y="0.0" width="320"** height="568"/>
547
- <autoresizingMask key="autoresizingMask"/>
549
+ <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="SCTutorialCell5" id="T8L-AB-8Je" userLabel="tutorial5" customClass="SCTutorialCell">
550
+ <rect key="frame" x="0.0" y="0.0" width="50" height="50"/>
551
+ <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
我在我的 UICollectionView 中插入了一个新的原型单元格,但是测试版 Xcode 没有像其他所有单元格一样制作新单元格,而是将单元格框架设置为 {0,0,50,50},而它应该是 {1280,0,320,第568章
进入源代码(右键单击故事板-> 查看为-> 源代码)并修复 XML 对我有用。