fix Crash when tapped moment cell

This commit is contained in:
haranicle 2016-05-03 12:01:50 +09:00
parent 66d980e74e
commit 5c6ef596b0
1 changed files with 9 additions and 0 deletions

View File

@ -120,6 +120,15 @@ class MomentViewController: AssetListViewController, ActivityIndicatable {
return isLoading
}
// MARK: - UICollectionViewDelegate
override func collectionView(collectionView: UICollectionView, didSelectItemAtIndexPath indexPath: NSIndexPath) {
guard let nohanaImagePickerController = nohanaImagePickerController else {
return
}
nohanaImagePickerController.delegate?.nohanaImagePicker?(nohanaImagePickerController, didSelectPhotoKitAsset: momentAlbumList[indexPath.section][indexPath.row].originalAsset)
}
// MARK: - Storyboard
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {