JiongXing / PhotoBrowser

Elegant photo browser in Swift. 图片与视频浏览器。
MIT License
1.32k stars 207 forks source link

1.5.1 的这两个方法 在 2.0 里面没有了么? 隐藏点击图片的方法现在是什么呀 #104

Closed MuRanJiangXia closed 6 years ago

MuRanJiangXia commented 6 years ago

/// 缩略图所在 view func photoBrowser(_ photoBrowser: PhotoBrowser, thumbnailViewForIndex index: Int) -> UIView? { return collectionView?.cellForItem(at: IndexPath(item: index, section: 0)) }

/// 缩略图图片,在加载完成之前用作 placeholder 显示
/// 返回 nil 直接显示本地图片
func photoBrowser(_ photoBrowser: PhotoBrowser, thumbnailImageForIndex index: Int) -> UIImage? {
    return nil
}
JiongXing commented 6 years ago

有的,就是我写在README的zoom转场动画使用说明:

// 返回起始/结束 视图
let trans = JXPhotoBrowserZoomTransitioning { (browser, index, view) -> UIView? in
    let indexPath = IndexPath(item: index, section: 0)
    return collectionView.cellForItem(at: indexPath)
}
JiongXing commented 6 years ago

2.0没对所点击图片隐藏了,微信也取消了这个特性,所以我也取消了这个

MuRanJiangXia commented 6 years ago

我用这个 方法 还是 没有隐藏点击的view

MuRanJiangXia commented 6 years ago

你这写的 太厉害了,我得好好看看了

masterdegithub commented 6 years ago

我是真的没找到2.1.0的安装本地pod仓库都清空重装了,还是最高1.6.1,在search中可以看到2。1。0 image

masterdegithub commented 6 years ago

我是真的没找到2.1.0的安装本地pod仓库都清空重装了,还是最高1.6.1,在search中可以看到2。1。0 image

我叫几个同事也试了,都只能search到不能安装

JiongXing commented 6 years ago

@masterdegithub pod repo update更新你的本地仓库,然后在项目目录下pod update,这样操作也不行吗?

masterdegithub commented 6 years ago

@masterdegithub pod repo update更新你的本地仓库,然后在项目目录下pod update,这样操作也不行吗?

是的,都试过了,不行

JiongXing commented 6 years ago

电脑上pod的master仓库源有没改过?是指向官方的吗

JiongXing commented 6 years ago

@masterdegithub 如果网速好的话,试试

pod repo remove master
pod setup
masterdegithub commented 6 years ago

@masterdegithub 如果网速好的话,试试

pod repo remove master
pod setup

试了还是不行,cocoapods都升级到1.6.2了也不行

JiongXing commented 6 years ago

@masterdegithub 用pod update,不要用pod install。你的podfile.lock锁了1.x版本。 或者你新建个空项目,install试下有没

masterdegithub commented 6 years ago

@masterdegithub 用pod update,不要用pod install。你的podfile.lock锁了1.x版本。 或者你新建个空项目,install试下有没

试了,podfile.lock删了重新install都不行,可以叫你身边的同事试下,可以安装2。0以上的不,我身边几个同事电脑也试了,能search到但是安装不行

JiongXing commented 6 years ago

我试了几台电脑,不同的网络,都可以呢

JiongXing commented 6 years ago

@masterdegithub 我发布了2.1.1版本,你有空再试试能不能拉下来? 此issue先关闭,还有问题请在#106反馈