作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个应用程序,其中我将图像及其详细信息保存在数据库中。我使用 Collection View 来显示图像,现在我希望能够单击一个并将其显示在 ImageView 的新页面上,以便我可以提供该图像的详细信息并将它们保存在数据库中。
任何帮助将不胜感激。
最佳答案
您应该实现以下 UICollectionViewDelegate 方法:
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
//retrieve image from your array
//push new view controller/perform segue with image
}
关于ios - 如何在其自己的 ImageView 中从 Collection View 打开图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17714276/
我是一名优秀的程序员,十分优秀!