Make PhotoMessagePresenter.photoCellStyle property public

This commit is contained in:
Anton Schukin 2016-03-16 10:41:05 +00:00
parent c846480615
commit 4ae42064cf
1 changed files with 2 additions and 2 deletions

View File

@ -33,6 +33,8 @@ public class PhotoMessagePresenter<ViewModelBuilderT, InteractionHandlerT where
public typealias ModelT = ViewModelBuilderT.ModelT
public typealias ViewModelT = ViewModelBuilderT.ViewModelT
public let photoCellStyle: PhotoMessageCollectionViewCellStyleProtocol
public init (
messageModel: ModelT,
viewModelBuilder: ViewModelBuilderT,
@ -50,8 +52,6 @@ public class PhotoMessagePresenter<ViewModelBuilderT, InteractionHandlerT where
)
}
let photoCellStyle: PhotoMessageCollectionViewCellStyleProtocol
public override class func registerCells(collectionView: UICollectionView) {
collectionView.registerClass(PhotoMessageCollectionViewCell.self, forCellWithReuseIdentifier: "photo-message")
}