AJ分享,必须精品

先看效果图

哈哈,这次猫猫给来个动态的图片,这个看起来带劲

实现思路

首先建立模型

这里用到的是一个双层的模型。

cell的实现

这里一看其实就知道是一个tableView,我们自定义cell实现细节

headerView的实现

每一组的标题头其实都是headerVIew这里都是按钮需要我们自己设计。

代码实现

双层模型的代码

FriendCell:

#import <Foundation/Foundation.h>
#import "NJGlobal.h" @interface NJFriendModel : NSObject
// 头像
@property (nonatomic, copy) NSString *icon;
// 简介
@property (nonatomic, copy) NSString *intro;
// 昵称
@property (nonatomic, copy) NSString *name;
// 是否是vip
@property (nonatomic, assign, getter = isVip) BOOL vip; NJInitH(friend)
@end

QQGroupModel:

#import <Foundation/Foundation.h>
#import "NJGlobal.h" @interface NJQQGroupModel : NSObject
/// 存放当前组所有的好友信息(好友模型)
@property (nonatomic, strong) NSArray *friends; // 分组名称
@property (nonatomic, copy) NSString *name; // 在线人数
@property (nonatomic, copy) NSString *online; // 记录当前组是否需要打开
@property (nonatomic, assign, getter = isOpen) BOOL open; NJInitH(qqGroup)
@end @implementation NJQQGroupModel - (instancetype)initWithDict:(NSDictionary *)dict
{
if (self = [super init]) {
// 1.将字典转换成模型
[self setValuesForKeysWithDictionary:dict];
// 定义数组保存转换后的模型
NSMutableArray *models = [NSMutableArray arrayWithCapacity:self.friends.count];
// 2.特殊处理friends中的数据
for (NSDictionary *dict in self.friends) {
// 2.1转换为模型
NJFriendModel *friend = [NJFriendModel friendWithDict:dict];
[models addObject:friend]; }
self.friends = models;
}
return self;
} + (instancetype)qqGroupWithDict:(NSDictionary *)dict
{
return [[self alloc] initWithDict:dict]; }
@end

cell 的自定义

#import <UIKit/UIKit.h>
@class NJFriendModel; @interface NJFriendCell : UITableViewCell + (instancetype)cellWithTableView:(UITableView *)tableView; @property (nonatomic, strong) NJFriendModel *friendData; @end @implementation NJFriendCell
+ (instancetype)cellWithTableView:(UITableView *)tableView
{
static NSString *identifier = @"friend";
NJFriendCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[NJFriendCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier];
}
return cell;
} - (void)setFriendData:(NJFriendModel *)friendData
{
_friendData = friendData; // 1.设置头像
self.imageView.image = [UIImage imageNamed:_friendData.icon];
// 2.设置昵称
self.textLabel.text = _friendData.name;
// 3.设置简介
self.detailTextLabel.text = _friendData.intro; // 4.判断是否是会员
if (_friendData.isVip) {
[self.textLabel setTextColor:[UIColor redColor]];
}else
{
[self.textLabel setTextColor:[UIColor blackColor]];
}
}
@end

header的自定义

#import "NJHeaderView.h"
#import "NJQQGroupModel.h" #import <UIKit/UIKit.h>
@class NJFriendModel; @interface NJFriendCell : UITableViewCell + (instancetype)cellWithTableView:(UITableView *)tableView; @property (nonatomic, strong) NJFriendModel *friendData; @end @implementation NJFriendCell
+ (instancetype)cellWithTableView:(UITableView *)tableView
{
static NSString *identifier = @"friend";
NJFriendCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[NJFriendCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier];
}
return cell;
} - (void)setFriendData:(NJFriendModel *)friendData
{
_friendData = friendData; // 1.设置头像
self.imageView.image = [UIImage imageNamed:_friendData.icon];
// 2.设置昵称
self.textLabel.text = _friendData.name;
// 3.设置简介
self.detailTextLabel.text = _friendData.intro; // 4.判断是否是会员
if (_friendData.isVip) {
[self.textLabel setTextColor:[UIColor redColor]];
}else
{
[self.textLabel setTextColor:[UIColor blackColor]];
}
}
@end @interface NJHeaderView ()
@property (nonatomic, weak) UIButton *btn;
@property (nonatomic, weak) UILabel *label;
@end @implementation NJHeaderView // 创建头部视图
+ (instancetype)headerViewWithTableView:(UITableView *)tableView
{
// 1.创建头部视图
static NSString *identifier = @"header";
NJHeaderView *headderView = [tableView dequeueReusableHeaderFooterViewWithIdentifier:identifier];
if (headderView == nil) {
headderView = [[NJHeaderView alloc] initWithReuseIdentifier:identifier];
}
return headderView;
} // 但凡在init方法中获取到的frame都是0
- (id)initWithReuseIdentifier:(NSString *)reuseIdentifier
{
if (self = [super initWithReuseIdentifier:reuseIdentifier]) {
// 1.添加子控件
// 1.1添加按钮
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
// 监听按钮的点击事件
[btn addTarget:self action:@selector(btnOnClick:) forControlEvents:UIControlEventTouchUpInside];
// 设置按钮的背景图片
[btn setBackgroundImage:[UIImage imageNamed:@"buddy_header_bg"] forState:UIControlStateNormal];
[btn setBackgroundImage:[UIImage imageNamed:@"buddy_header_bg_highlighted"] forState:UIControlStateHighlighted]; // 设置按钮上的尖尖图片
[btn setImage:[UIImage imageNamed:@"buddy_header_arrow"] forState:UIControlStateNormal];
// 1.设置按钮的内容左对齐
btn.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;
// 2.设置按钮的内边距,然按钮的内容距离左边有一定的距离
btn.contentEdgeInsets = UIEdgeInsetsMake(0, 20, 0, 0);
// 3.设置按钮的标题和图片之间的距离
btn.titleEdgeInsets = UIEdgeInsetsMake(0, 20, 0, 0);
// btn.imageEdgeInsets
// 设置按钮标题颜色
[btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; // 设置btn中的图片不填充整个imageview
btn.imageView.contentMode = UIViewContentModeCenter;
// 超出范围的图片不要剪切
// btn.imageView.clipsToBounds = NO;
btn.imageView.layer.masksToBounds = NO; [self addSubview:btn];
self.btn = btn; // 1.2添加label
UILabel *label = [[UILabel alloc] init];
// label.backgroundColor = [UIColor greenColor];
// 设置文本右对齐
label.textAlignment = NSTextAlignmentRight;
label.textColor = [UIColor grayColor]; [self addSubview:label];
self.label = label;
} // NSLog(@"initWithReuseIdentifier = %@", NSStringFromCGRect(self.frame));
return self;
}
// 该方法在控件的frame被改变的时候就会调用
// 该方法一般用于调整子控件的位置
- (void)layoutSubviews
{
#warning 切记重写layoutSubviews方法一定要调用父类的layoutSubviews
[super layoutSubviews];
// 1.设置按钮的frame
self.btn.frame = self.bounds;
// 2.设置label的frame
CGFloat padding = 20;// 间隙
CGFloat labelY = 0;
CGFloat labelH = self.bounds.size.height;
CGFloat labelW = 150;
CGFloat labelX = self.bounds.size.width - padding - labelW;
self.label.frame = CGRectMake(labelX, labelY, labelW, labelH);
} - (void)btnOnClick:(UIButton *)btn
{
NSLog(@"按钮被点击了");
// 1.修改组模型的isOpen属性
// 修改模型数据数据
self.qqGroup.open = !self.qqGroup.isOpen;
// 2. 刷新表格(通知代理)
if ([self.delegate respondsToSelector:@selector(headerViewDidClickHeaderView:)]) {
[self.delegate headerViewDidClickHeaderView:self];
} // 3.修改btn上图片,让图片旋转
// self.btn.imageView.transform = CGAffineTransformMakeRotation(M_PI_2); // NSLog(@"%p %@", self, self.qqGroup.name);
} #pragma mark - 当一个控件被添加到其它视图上的时候会调用以下方法
// 已经被添加到父视图上的时候会调用
- (void)didMoveToSuperview
{
// 在这个方法中就快要拿到最新的被添加到tableview上的头部视图修改它的图片
if (self.qqGroup.isOpen) {
self.btn.imageView.transform = CGAffineTransformMakeRotation(M_PI_2);
}
}
// 即将被添加到父视图上的时候会调用
- (void)willMoveToSuperview:(UIView *)newSuperview
{
// NSLog(@"willMoveToSuperview");
} - (void)setQqGroup:(NJQQGroupModel *)qqGroup
{
_qqGroup = qqGroup; // 1.设置按钮上的文字
[self.btn setTitle:_qqGroup.name forState:UIControlStateNormal];
// 2.设置在线人数
self.label.text = [NSString stringWithFormat:@"%@/%d", _qqGroup.online, _qqGroup.friends.count];
}
@end

控制器代码

#import "NJViewController.h"
#import "NJQQGroupModel.h"
#import "NJFriendModel.h"
#import "NJFriendCell.h"
#import "NJHeaderView.h" @interface NJViewController ()<NJHeaderViewDelegate>
// 保存所有的分组数据
@property (nonatomic, strong) NSArray *qqGroups; @end @implementation NJViewController #pragma mark - 懒加载
- (NSArray *)qqGroups
{
if (_qqGroups == nil) {
NSString *fullPath = [[NSBundle mainBundle] pathForResource:@"friends.plist" ofType:nil];
NSArray *dictArray = [NSArray arrayWithContentsOfFile:fullPath];
NSMutableArray *models = [NSMutableArray arrayWithCapacity:dictArray.count];
for (NSDictionary *dict in dictArray) {
NJQQGroupModel *qqGroip = [NJQQGroupModel qqGroupWithDict:dict];
[models addObject:qqGroip];
}
self.qqGroups = [models copy];
}
return _qqGroups;
} - (void)viewDidLoad
{
[super viewDidLoad];
} #pragma mark - 数据源方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return self.qqGroups.count;
} - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// 1.取出对应的组模型
NJQQGroupModel *qqGroup = self.qqGroups[section];
// 2.返回对应组中的好友数
// return qqGroup.friends.count;
// return 0;
if (qqGroup.isOpen) {
// 代表要展开
return qqGroup.friends.count;
}else
{
// 代表要合拢
return 0;
}
} - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 1.创建cell
NJFriendCell *cell = [NJFriendCell cellWithTableView:tableView];
// 2.传递模型
// 2.1.取出对应的组模型
NJQQGroupModel *qqGroup = self.qqGroups[indexPath.section];
NJFriendModel *friend = qqGroup.friends[indexPath.row];
cell.friendData = friend; // 3.返回cell
return cell;
} #pragma mark - NJHeaderViewDelegate
- (void)headerViewDidClickHeaderView:(NJHeaderView *)headerView
{
// 重新调用数据源的方法加载数据
[self.tableView reloadData];
} #pragma mark - 代理方法
// 当一个分组标题进入视野的时候就会调用该方法
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
// 1.创建头部视图, 头部视图有默认的宽高,是系统自动设置
NJHeaderView *headerView = [NJHeaderView headerViewWithTableView:tableView];
// 设置当前控制器为代理
headerView.delegate = self; // 2.传递模型
NJQQGroupModel *qqGroup = self.qqGroups[section];
// 0 - 0x8fa7ef0
headerView.qqGroup = qqGroup;
NSLog(@"%d - %p", section, headerView);
// 3.返回头部视图
return headerView; }
// 设置分组头部标题的高度
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 44;
} - (BOOL)prefersStatusBarHidden
{
return YES;
}
@end

AJ学IOS(19)UI之QQ好友列表的更多相关文章

  1. AJ学IOS 之ipad开发qq空间项目横竖屏幕适配

    AJ分享,必须精品 一:效果图 先看效果 二:结构图 如图所示: 其中用到了UIView+extension分类 Masonry第三方框架做子控制器的适配 NYHomeViewController对应 ...

  2. iOS UITableView制作类似QQ好友列表视图

                #import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDele ...

  3. iOS开发UI篇—使用UItableview完成一个简单的QQ好友列表(一)

    iOS开发UI篇—使用UItableview完成一个简单的QQ好友列表(一) 一.项目结构和plist文件 二.实现代码 1.说明: 主控制器直接继承UITableViewController // ...

  4. [iOS基础控件 - 6.9.3] QQ好友列表Demo TableView

    A.需求 1.使用plist数据,展示类似QQ好友列表的分组.组内成员显示缩进功能 2.组名使用Header,展示箭头图标.组名.组内人数和上线人数 3.点击组名,伸展.缩回好友组   code so ...

  5. android 实现QQ好友列表

    在某些Android开发群里,看到有些新手问怎么实现QQ好友列表,其实网上一搜挺多的.接触Android,也才一年的时间,大部分时间花在工作上(解bug...),界面上开发很少参与.自己维护的系统应用 ...

  6. Windows UIA自动化测试框架学习--获取qq好友列表

    前段时间应公司要求开发一款针对现有WPF程序的自动化测试工具,在网上查资料找了一段时间,发现用来做自动化测试的框架还是比较多的,比如python的两个模块pywinauto和uiautomation, ...

  7. 仿QQ好友列表界面的实现

    TableView有2种style:UITableViewStylePlain 和 UITableViewStyleGrouped. 但是QQ好友列表的tableView给人的感觉似乎是2个style ...

  8. ExpandableListView仿QQ好友列表

    本例中,对ExpandableListView中的数据进行了封装,分为两个JavaBean,一个为Group类表示组信息,一个Child类表示该组下子列表信息: Group: public class ...

  9. (二十七)QQ好友列表的实现

    QQ好友列表通过plist读取,plist的结构为一组字典,每个字典内有本组的信息和另外一组字典代表好友. 要读取plist,选择合适的数据结构,例如NSArray,然后调用initWithConte ...

随机推荐

  1. Systematic comparison of strategies for the enrichment of lysosomes by data independent acquisition 通过DIA技术系统比较各溶酶体富集策略 (解读人:王欣然)

    文献名:Systematic comparison of strategies for the enrichment of lysosomes by data independent acquisit ...

  2. Who Gets the Most Candies? POJ - 2886(线段树单点更新+区间查询+反素数)

    预备知识:反素数解析 思路:有了反素数的解法之后就是线段树的事了. 我们可以用线段树来维护哪些人被淘汰,哪些人没被淘汰,被淘汰的人的位置,没被淘汰的人的位置. 我们可以把所有人表示为一个[1,n]的区 ...

  3. jenkins-gitlab-harbor-ceph基于Kubernetes的CI/CD运用(二)

    一张网图 因为我们使用了Docker in Docker技术,就是把jenkins部署在k8s里.jenkins master会动态创建slave pod,使用slave pod运行代码克隆,项目构建 ...

  4. AspNetCore3.1_Secutiry源码解析_8_Authorization_授权框架

    目录 AspNetCore3.1_Secutiry源码解析_1_目录 AspNetCore3.1_Secutiry源码解析_2_Authentication_核心流程 AspNetCore3.1_Se ...

  5. 第十一周Java实验作业

    实验十一   集合 实验时间 2018-11-8 1.实验目的与要求 (1) 掌握Vetor.Stack.Hashtable三个类的用途及常用API: Vector类类似长度可变的数组,其中只能存放对 ...

  6. 微信小程序api封装

    写多 之后,吸取之前的经验,瞎写了一个简单的封装api,有幸看到的朋友,就随便看看哈,如果能给到你帮助就一直棒了,额呵呵呵! 新建constant.js和api.js文件 在constant.js中统 ...

  7. 进制-Adding Two Negabinary Numbers

    2020-02-20 14:52:41 问题描述: 问题求解: 最开始的想法是将两个数字先转化成自然数在求和,最后转化回去,但是实际上这种方案是不可取的,主要的问题就是会爆掉. 那么就得按位进行运算了 ...

  8. 高效code review指南

    大多数程序员都知道并且相信code review(代码审查)的重要性,但并一定都能很好的执行这一过程,做好code review也需要遵循一定的原则.流程和规范. 我们团队的code review实践 ...

  9. OpenCV-Python 相机校准 | 四十九

    目标 在本节中,我们将学习 由相机引起的失真类型, 如何找到相机的固有和非固有特性 如何根据这些特性使图像不失真 基础 一些针孔相机会给图像带来明显的失真.两种主要的变形是径向变形和切向变形. 径向变 ...

  10. SG函数(斐波那契博弈) Fibonacci again and again

    https://zhuanlan.zhihu.com/p/53948422 HDU - 1848 将这篇文章认真的看了一遍 ,虽然不是很懂 ,但是脑子里有了一个模型,链接里的图 (看的顺序 是 0,1 ...