UIday1702:KVO 观察者设计模式 代码实现 常用

2024-04-08 04:58

本文主要是介绍UIday1702:KVO 观察者设计模式 代码实现 常用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

KVO 观察者设计模式 代码实现 常用


前提需要将之前编辑好的两个DownLoadTool文件拖过来

(DownLoadTool.h  DownLoadTool.m)


TableViewController.m

#import "TableViewController.h"
#import "TableViewCell.h"
#import "Model.h"
#import "DownLoadTool.h" @interface TableViewController ()@property(nonatomic,strong)NSMutableArray * dataArray;@end@implementation TableViewController- (void)viewDidLoad {[super viewDidLoad];//初始化数组self.dataArray = [NSMutableArray array];//请求数据[DownLoadTool downLoadWithURL:@"http://project.lanou3g.com/teacher/yihuiyun/lanouproject/activitylist.php" method:@"GET" param:nil passValue:^(id value) {//解析数据NSDictionary * tempDict = [NSJSONSerialization JSONObjectWithData:value options:(NSJSONReadingAllowFragments) error:nil];for (NSDictionary * dict in tempDict[@"events"]) {Model * m = [[Model alloc]init];[m setValuesForKeysWithDictionary:dict];[self.dataArray addObject:m];}//更新数据[self.tableView reloadData];}];}- (void)didReceiveMemoryWarning {[super didReceiveMemoryWarning];// Dispose of any resources that can be recreated.
}#pragma mark - Table view data source- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
#warning Potentially incomplete method implementation.// Return the number of sections.return 1;
}- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
#warning Incomplete method implementation.// Return the number of rows in the section.return self.dataArray.count;
}- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {TableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];//获取对应的model对象Model * m = self.dataArray[indexPath.row];//赋值cell.lab.text = m.title;//加载图片if (m.loadImage == nil && m.isLoading == NO) {//如果满足这个条件,说明图片可以显示//这种情况就启用占位图cell.imV.image = [UIImage imageNamed:@"000.png"];//加载图片数据[m downLoadImage];//添加观察者//__bridge_retained 桥接的作用将c语言转成OC[m addObserver:self forKeyPath:@"loadImage" options:(NSKeyValueObservingOptionNew) context:(__bridge_retained void *)(indexPath)];}else{//加载中//判断图片是否下载完成if (m.image == nil) {//如果未完成,使用占位符cell.imV.image = [UIImage imageNamed:@"000.png"];}else{//完成 就是用下载后的图片cell.imV.image = m.loadImage;}}return cell;
}//
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{// 1 拿到新值UIImage * newImage = change[NSKeyValueChangeNewKey];// 判空if ([newImage isEqual:[NSNull null]]) {return;}// 2 拿到当前显示的cell(index)NSArray * indexArray = [self.tableView indexPathsForVisibleRows];// 3 拿到刚请求到图片的cell的indexPath// __bridge NSIndexPath *NSIndexPath * indexPath = (__bridge NSIndexPath *)(context);// 4 判断是否正在显示if ([indexArray containsObject:indexPath]) {// 拿到cellTableViewCell * cell = (TableViewCell *)[self.tableView cellForRowAtIndexPath:indexPath];// 换图片cell.imV.image = newImage;}// 移除观察者[object removeObserver:self forKeyPath:@"loadImage"];}@end

TableViewCell.h

#import <UIKit/UIKit.h>@interface TableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *lab;
@property (weak, nonatomic) IBOutlet UIImageView *imV;@end

Model.h

#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>@interface Model : NSObject@property(nonatomic,copy)NSString * image;
@property(nonatomic,copy)NSString * title;// 用来缓存图片
@property(nonatomic,strong)UIImage * loadImage;// 判断图片是否正在加载
@property(nonatomic,assign)BOOL isLoading;// 加载图片
-(void)downLoadImage;@end

Model.m

#import "Model.h"
#import "DownLoadTool.h"@implementation Model-(void)downLoadImage{[DownLoadTool downLoadWithURL:_image method:@"GET" param:nil passValue:^(id value) {self.loadImage = [UIImage imageWithData:value];//加载完成 (意味着不在加载中)_isLoading = NO;}];// 加载中_isLoading = YES;}-(void)setValue:(id)value forUndefinedKey:(NSString *)key{}@end



这篇关于UIday1702:KVO 观察者设计模式 代码实现 常用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/884624

相关文章

HarmonyOS学习(七)——UI(五)常用布局总结

自适应布局 1.1、线性布局(LinearLayout) 通过线性容器Row和Column实现线性布局。Column容器内的子组件按照垂直方向排列,Row组件中的子组件按照水平方向排列。 属性说明space通过space参数设置主轴上子组件的间距,达到各子组件在排列上的等间距效果alignItems设置子组件在交叉轴上的对齐方式,且在各类尺寸屏幕上表现一致,其中交叉轴为垂直时,取值为Vert

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

常用的jdk下载地址

jdk下载地址 安装方式可以看之前的博客: mac安装jdk oracle 版本:https://www.oracle.com/java/technologies/downloads/ Eclipse Temurin版本:https://adoptium.net/zh-CN/temurin/releases/ 阿里版本: github:https://github.com/

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

在JS中的设计模式的单例模式、策略模式、代理模式、原型模式浅讲

1. 单例模式(Singleton Pattern) 确保一个类只有一个实例,并提供一个全局访问点。 示例代码: class Singleton {constructor() {if (Singleton.instance) {return Singleton.instance;}Singleton.instance = this;this.data = [];}addData(value)