阿里云服务器免费领卷啦。

捡代码论坛-最全的游戏源码下载技术网站!

 找回密码
 立 即 注 册

QQ登录

只需一步,快速开始

搜索
关于源码区的附件失效或欺骗帖, 处理办法
查看: 2306|回复: 0

iOS微信朋友圈与摇一摇-源码实现

[复制链接]

4213

主题

210

回帖

12万

积分

管理员

管理员

Rank: 9Rank: 9Rank: 9

积分
127137
QQ
发表于 2016-8-8 10:01:09 | 显示全部楼层 |阅读模式
本Demo为练手小项目,主要是熟悉目前主流APP的架构模式.此项目中采用MVC设计模式,纯代码和少许XIB方式实现.主要实现了朋友圈功能和摇一摇功能.
预览效果:

QQ截图20160808095903.png QQ截图20160808095916.png
WeChat_Demo.gif

主要重点1.整体架构
利用UITabBarController和UINavigationController配合实现.其中要注意定义基类,方便整体上的管理,例如对UINavigationController头部的颜色,字体和渲染颜色等设置.以及对UITabBarController的底部的渲染等.


  1. [self.navigationBar setBackgroundImage:[UIImage imageNamed:@"Dimensional-_Code_Bg"] forBarMetrics:UIBarMetricsDefault];      

  2. [self.navigationBar setTitleTextAttributes:@{
  3.                                              NSForegroundColorAttributeName:[UIColor whiteColor]
  4.                                              }];

  5. [self.navigationBar setTintColor:[UIColor whiteColor]];
复制代码
2.发现界面和我的界面
利用UITableViewController和Plist文件实现界面的展示.实现过程中有采用数据模型或直接利用字典等方式.这里的实现比较简单,就不多说啦.

  1. - (instancetype)initWithDict:(NSDictionary *)dict{

  2. if (self = [super init]) {
  3.     [self setValuesForKeysWithDictionary:dict];
  4. }
  5. return self;
  6. }

  7. + (instancetype)pictureWithDict:(NSDictionary *)dict{

  8. return [[self alloc] initWithDict:dict];
  9. }
复制代码
3.朋友圈功能的实现
这里面主要的难点在于朋友圈首页的下拉刷新效果的实现,和选择照片页的状态重用问题,以及照片的传递和代理的实现等.
朋友圈首页的下拉刷新效果:主要利用transform属性和scrollview的多种滚动状态.

  1. - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView{
  2.    self.dragging = YES;
  3. }
  4. - (void)scrollViewDidScroll:(UIScrollView *)scrollView{

  5. if (self.num == 0) {
  6.     self.num ++;
  7.     return;
  8. }

  9. CGFloat offsetY = scrollView.contentOffset.y;

  10. CGFloat angle = -offsetY * M_PI / 30;

  11. if (self.dragging == YES) {

  12.     if (offsetY <= 110) {
  13.         self.containerView.y = 10 + offsetY;

  14.     }

  15. }else {

  16.     if (self.currentY < 120) {
  17.         self.containerView.y = 10 + offsetY;
  18.     }

  19. }
  20. self.activityView.transform = CGAffineTransformMakeRotation(angle);

  21. }
  22. - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{

  23. self.dragging = NO;

  24. CGFloat currentY = self.containerView.y;
  25. self.currentY = currentY;

  26. }

  27. - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{

  28. [UIView animateWithDuration:0.25 animations:^{

  29.     self.containerView.frame = CGRectMake(15, 120, 30, 30);
  30.     self.activityView.transform = CGAffineTransformMakeRotation(2 * M_PI);
  31. }];

  32. }
复制代码
其中照片的展示是采用UICollectionViewController来实现的.没有直接调用系统的相册,因此加大了难度.自定义了cell,并采用了代理方式来实现类与类之间的通信.

  1. @protocol YYPictureCellDelegate <NSObject>
  2. @optional
  3. - (void)pictureCell:(YYPictureCell *)cell withDidClickBtn:(UIButton *)btn;

  4. @end

  5. - (IBAction)clickSureBtn:(UIButton *)sender {

  6. if ([self.delegate respondsToSelector:@selector(pictureCell:withDidClickBtn:)]) {

  7.     [self.delegate pictureCell:self withDidClickBtn:sender];
  8. }
  9. }

  10. - (void)pictureCell:(YYPictureCell *)cell withDidClickBtn:(UIButton *)btn{

  11. if ((self.selectedBtn.count == 9) && (!btn.isSelected)) {

  12.     UIAlertView *alert = [[UIAlertView alloc]initWithTitle:nil message:@"最多选取9张照片哦,亲!" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles: nil];
  13.     [alert show];

  14.     return;
  15. }

  16. btn.selected = !btn.isSelected;

  17. NSIndexPath *indexPath = [self.collectionView indexPathForCell:cell];

  18. YYPictureModel *model = self.dataArray[indexPath.row];

  19. if (btn.isSelected) {

  20.     model.clickedBtn = YES;

  21.     [self.selectedBtn addObject:btn];
  22.     [self.selImageArray addObject:model];

  23. } else{

  24.     model.clickedBtn = NO;
  25.     [self.selectedBtn removeObject:btn];
  26.     [self.selImageArray removeObject:model];
  27. }

  28. if (self.selectedBtn.count > 0) {

  29.     self.doneBtn.enabled = YES;
  30.     self.doneBtn.selected = YES;
  31.     self.previewBtn.enabled = YES;
  32.     self.previewBtn.selected = YES;
  33. }else {

  34.     self.doneBtn.enabled = NO;
  35.     self.doneBtn.selected = NO;
  36.     self.previewBtn.enabled = NO;
  37.     self.previewBtn.selected = NO;
  38. }   
  39. }
复制代码
4.摇一摇功能的实现
摇一摇功能的本身实现十分简单,就是调用系统的两个方法即可.难点在于动画效果.其实这里的动画效果也不是很难.主要是计算有点复杂.可能是我在网上搜索到的素材有点不合适.导致要考虑各个控件的frame问题...

  1. //实现摇一摇功能
  2. - (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event{

  3. self.upLine.hidden = NO;
  4. self.downLine.hidden = NO;
  5. [UIView animateWithDuration:0.6 animations:^{

  6.     self.upImageView.y -= 60;
  7.     self.upLine.y -= 60;

  8.     self.downImageView.y += 60;
  9.     self.downLine.y += 60;

  10. }completion:^(BOOL finished) {

  11.     [UIView animateWithDuration:0.6 animations:^{

  12.         self.upImageView.y += 60;
  13.         self.upLine.y += 60;

  14.         self.downImageView.y -= 60;
  15.         self.downLine.y -= 60;

  16.     } completion:^(BOOL finished) {

  17.         self.upLine.hidden = YES;
  18.         self.downLine.hidden = YES;

  19.         //弹出搜索框
  20.         [self showSearchView];
  21.         [self.searchView performSelector:@selector(removeFromSuperview) withObject:nil afterDelay:2.4];
  22.     }];

  23. }];
  24. }
  25. //摇一摇结束后
  26. - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event{

  27. }
复制代码
结束语:
在此,还有感谢提供素材的网友们.此demo主要是把功能实现,代码方面没有做过多的优化,但是易懂,呵呵...有待后续添加其他功能和代码的优化.需要源代码的请戳这里:https://github.com/yaomars/WeChat_Demo








捡代码论坛-最全的游戏源码下载技术网站! - 论坛版权郑重声明:
1、本主题所有言论和图片纯属会员个人意见,与本论坛立场无关
2、本站所有主题由该帖子作者发表,该帖子作者与捡代码论坛-最全的游戏源码下载技术网站!享有帖子相关版权
3、捡代码论坛版权,详细了解请点击。
4、本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。
5、若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。 我们不承担任何技术及版权问题,且不对任何资源负法律责任。
6、如无法链接失效或侵犯版权,请给我们来信:jiandaima@foxmail.com

回复

使用道具 举报

*滑块验证:
您需要登录后才可以回帖 登录 | 立 即 注 册

本版积分规则

技术支持
在线咨询
QQ咨询
3351529868

QQ|手机版|小黑屋|捡代码论坛-专业源码分享下载 ( 陕ICP备15015195号-1|网站地图

GMT+8, 2025-1-5 15:04

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表