从故事板的 UICollectionViewFlowLayout 创建 IBOutlet 时出错
Errors when creating an IBOutlet from UICollectionViewFlowLayout from storyboard
我正在尝试从我的集合视图的流布局中设置一个 IBOutlet 属性(在 collectionViewController 中):
@IBOutlet weak var collectionViewLayout: UICollectionViewFlowLayout!
但是,当我连接插座时,出现以下 3 个错误:
- Cannot override 'strong' property with 'weak' property
- Getter for 'collectionViewLayout' with Objective-C selector 'collectionViewLayout' conflicts with getter for
'collectionViewLayout' from superclass 'UICollectionViewController'
with the same Objective-C selector
- Property 'collectionViewLayout' with type 'UICollectionViewFlowLayout?' cannot override a property with type
'UICollectionViewLayout'
谁能解释一下这是什么意思,我该如何解决?
collectionViewLayout
是 UICollectionViewController
class 的 属性。将插座名称更改为其他名称。
我正在尝试从我的集合视图的流布局中设置一个 IBOutlet 属性(在 collectionViewController 中):
@IBOutlet weak var collectionViewLayout: UICollectionViewFlowLayout!
但是,当我连接插座时,出现以下 3 个错误:
- Cannot override 'strong' property with 'weak' property
- Getter for 'collectionViewLayout' with Objective-C selector 'collectionViewLayout' conflicts with getter for 'collectionViewLayout' from superclass 'UICollectionViewController' with the same Objective-C selector
- Property 'collectionViewLayout' with type 'UICollectionViewFlowLayout?' cannot override a property with type 'UICollectionViewLayout'
谁能解释一下这是什么意思,我该如何解决?
collectionViewLayout
是 UICollectionViewController
class 的 属性。将插座名称更改为其他名称。