豆瓣相册精选集

移动开发
豆瓣相册精选集的源码,来自Tonny&Sunm,可以参考,修改后使用,但界面不得随便使用。

源码简介

豆瓣相册精选集的源码,来自Tonny&Sunm,可以参考,修改后使用,但界面不得随便使用。
源码运行截图

源码片段:

  1. - (IBAction)showPhotosInAlbum:(UISwipeGestureRecognizer *)gesture { 
  2.     if (IsShowingCategory) return
  3.       
  4.     CGPoint point = [gesture locationInView:_tableView]; 
  5.     NSIndexPath *selectedIndexPath = [_tableView indexPathForRowAtPoint:point]; 
  6.     if (!selectedIndexPath) return
  7.       
  8.     NSUInteger row = selectedIndexPath.row; 
  9.       
  10.     [self hidePaperIndicator]; 
  11.       
  12.     DAPhotoWallViewController *vc = (DAPhotoWallViewController *)[self.storyboard instantiateViewControllerWithIdentifier:@"DAPhotoWallViewController"]; 
  13.       
  14.     NSDictionary *dic = _dataSource[@"albums"][row]; 
  15.       
  16.     vc.albumDic = dic; 
  17.     NSArray *doubanCategory = [_appData valueForKeyPath:@"cg_all"]; 
  18.     vc.canNotGotoUserAlbum = (_seletedCategory == doubanCategory.count); 
  19.       
  20.     CGFloat offset = [_tableView rectForRowAtIndexPath:selectedIndexPath].origin.y-[_tableView contentOffset].y; 
  21.     vc.paperIndicatorOffset = offset; 
  22.   
  23.     _lastSelectedRow = row; 
  24.     //// 
  25.     UITableViewCell *cell = [_tableView cellForRowAtIndexPath:selectedIndexPath]; 
  26.     UIView *view = [cell.contentView viewWithTag:4]; 
  27.     [UIView animateWithDuration:0.3 
  28.                      animations:^{ 
  29.                          view.alpha = 1
  30.                      }completion:^(BOOL finished) { 
  31.                          [self.navigationController pushViewController:vc animated:YES]; 
  32.                      }]; 

源码链接:http://down.51cto.com/data/1984620

责任编辑:chenqingxiang 来源: 网络整理
相关推荐

2015-07-22 10:40:57

豆瓣相册

2021-12-14 08:26:52

Chrome浏览器Google

2022-05-16 14:19:31

谷歌数据3D

2018-07-03 08:33:43

程序员阿里开源

2017-12-19 14:40:41

阿里内部技术年度精选

2012-10-30 13:12:55

PythonicHackathon豆瓣

2014-07-29 11:20:28

Swift豆瓣电台编程实战

2009-12-16 09:40:38

Linux终端Linux命令

2013-06-17 14:10:08

WP7开发Windows Pho豆瓣电台

2016-12-05 18:54:53

Rexxar豆瓣

2016-07-18 16:09:40

精益生产Testin质量控制

2017-05-10 16:01:39

推荐系统算法实践

2013-11-06 11:29:39

PhoneGap

2020-01-13 13:01:41

Windows软件电脑

2018-11-14 10:36:47

Python 开发编程语言

2022-03-02 15:59:37

HarmonyOS操作系统鸿蒙

2009-06-16 11:53:21

Java试题

2015-01-12 13:04:39

Swift开源项目汇总

2015-11-12 16:14:52

Python开发实践

2019-10-10 16:31:51

PyCharmPythonWindows
点赞
收藏

51CTO技术栈公众号