iOS 架构中对数据统一性安排

作者: 语歌 | 来源:发表于2016-08-02 16:30 被阅读11342次

问题:

当App中有多个耦合性不高的页面,而页面之间又牵扯到数据的一致性,此时就会发现什么代理,通知操作起来都会相当的复杂,单利也不错,但是单利这玩意生命周期。。。咳咳

举例:A页面 B页面 C页面....... 中都有数据需要一致性,其中一个页面中用户对其数据发生了改变,其他页面都需要相应的处理,这种情况在App非常常见:

直接上代码:

这里的解决办法是建立一个对数据专门处理的类,每个页面对数据进行改变后通过通知的方式来通知该类,然后该类对数据进行管理,同时其他 控制器页面对所处理的数据进行监听,这样就解决了控制器之间复杂的数据传输问题:

A页面|B页面|C页面
---- | ----|-----||
数据监听|数据改变通知 监听|数据改变通知 监听

统一由YYGDataSoource来负责接收 通知,收到通知后对数据进行操作|
-----------|-------------

A页面 直接 .h文件

#import "ViewController.h"
#import "YYGDataSoource.h"

@interface ViewController ()

@property (weak, nonatomic) IBOutlet UILabel *Alabel;
@property(strong,nonatomic) YYGDataSoource * dataSource;

@end

@implementation ViewController
-(void)awakeFromNib
{
    self.dataSource=[YYGDataSoource new];
    //设置观察者
    [self.dataSource addObserver:self
                      forKeyPath:@"data"
                         options:NSKeyValueObservingOptionNew
                         context:NULL];
}
-(void)dealloc
{
    [self.dataSource removeObserver:self forKeyPath:@"data"];
}

- (void)viewDidLoad {
    [super viewDidLoad];
    [self updataLabel];
    
}

-(void)updataLabel
{
    self.Alabel.text=[self.dataSource.data stringValue];
}


#pragma mark Class Notification
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context
{
    if (object == self.dataSource && [keyPath isEqualToString:@"data"])
    {
        [self updataLabel];
    }
}

B页面

#import "BViewController.h"
#import "YYGDataLayer.h"
#import "YYGDataSoource.h"
#import "YYGNotification.h"

@interface BViewController ()
@property (weak, nonatomic) IBOutlet UILabel *Blabel;
@property(strong,nonatomic) YYGDataSoource * dataSource;

@end

@implementation BViewController
-(void)awakeFromNib
{
    self.dataSource=[YYGDataSoource new];
    [self.dataSource addObserver:self
                      forKeyPath:@"data"
                         options:NSKeyValueObservingOptionNew
                         context:NULL];
}

-(void)dealloc
{
    [self.dataSource removeObserver:self forKeyPath:@"data"];
}

- (void)viewDidLoad {
    [super viewDidLoad];
    [self updata];
    NSLog(@"--%@--",self.Blabel.text);
    
}

- (IBAction)Bchange:(id)sender
{
    NSLog(@"this is B");
    int value=arc4random()%100;
    [YYGDataLayer setData:value];
    [[NSNotificationCenter defaultCenter]postNotificationName:YYGDataChangedNotification
                                                       object:nil
                                                     userInfo:nil];
    
}

-(void)updata
{
    self.Blabel.text=[self.dataSource.data stringValue];
}

#pragma mark Class Notification
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context
{
    
    if (object == self.dataSource && [keyPath isEqualToString:@"data"])
    {
        [self updata];
    }
}

C页面

#import "CViewController.h"
#import "YYGDataSoource.h"
#import "YYGDataLayer.h"
#import "YYGNotification.h"

@interface CViewController ()
@property (weak, nonatomic) IBOutlet UILabel *Clabel;
@property(strong,nonatomic) YYGDataSoource * dataSource;

@end

@implementation CViewController
-(void)awakeFromNib
{
    self.dataSource=[YYGDataSoource new];
    [self.dataSource addObserver:self forKeyPath:@"data" options:NSKeyValueObservingOptionNew context:NULL];
}
- (void)viewDidLoad {
    [super viewDidLoad];
    [self updata];
    
}


- (IBAction)Change:(UIButton *)sender {
    NSLog(@"this is C");
    int value=arc4random()%100;
    [YYGDataLayer setOtherData:value];
    [[NSNotificationCenter defaultCenter]postNotificationName:YYGDataChangedNotification object:nil userInfo:nil];
}

-(void)updata
{
    self.Clabel.text=[self.dataSource.data stringValue];
}


#pragma mark Class Notification
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSString *,id> *)change context:(void *)context
{
  
    if (object == self.dataSource && [keyPath isEqualToString:@"data"])
    {
        [self updata];
    }
}
@end

对数据处理的类

YYGDataLayer.m文件
#import <Foundation/Foundation.h>
@class YYGDataModel;

@interface YYGDataLayer : NSObject

+(YYGDataModel *)selectData;

+(void)setData:(int)Data;

+(YYGDataModel *)selectOtherData;

+(void)setOtherData:(int)Data;

@end

.h文件

#import "YYGDataLayer.h"
#import "YYGDataModel.h"

static int s_data = 55;

static int s_otherData = 15;

@implementation YYGDataLayer

+(YYGDataModel *)selectData
{
    YYGDataModel * model=[YYGDataModel new];
    model.data=@(s_data);
    
    return model;
}
+(void)setData:(int)Data
{
    if (Data!=s_data)
    {
        s_data=Data;
    }
}

+(YYGDataModel *)selectOtherData
{
    YYGDataModel * model=[YYGDataModel new];
    model.data=@(s_otherData);
    
    return model;
}
+(void)setOtherData:(int)Data
{
    if (Data!=s_otherData)
    {
        s_otherData=Data;
    }
}

@end

模型类 1

#import <Foundation/Foundation.h>

@interface YYGDataModel : NSObject

@property(strong,nonatomic) NSNumber * data;

@end

#import "YYGDataModel.h"

@implementation YYGDataModel

@end

重要!!!对数据统一处理类

#import <Foundation/Foundation.h>

@class YYGDataModel;

@interface YYGDataSoource : NSObject

@property(strong,nonatomic,readonly) NSNumber * data;

@end

#import "YYGDataSoource.h"
#import "YYGDataModel.h"
#import "YYGDataLayer.h"
#import "YYGNotification.h"

@interface YYGDataSoource()

@property(strong,nonatomic) NSNumber * data;

@end

@implementation YYGDataSoource

-(instancetype)init
{
    if (self=[super init])
    {
        [[NSNotificationCenter defaultCenter]addObserver:self
                                                selector:@selector(NotificationHandler)
                                                    name:YYGDataChangedNotification
                                                  object:nil];
        [self updata];
    }
    return self;
}
-(void)updata

{
    YYGDataModel * model1=[YYGDataLayer selectData];
    YYGDataModel * model2=[YYGDataLayer selectOtherData];
    self.data=@([model1.data intValue]+[model2.data intValue]);
}
-(void)dealloc
{
    [[NSNotificationCenter defaultCenter]removeObserver:self];
}

#pragma mark Classs Notification
-(void)NotificationHandler
{
    [self updata];
}

@end

QQ交流群 298975638
本文 demo

参考链接

相关文章

  • iOS 架构中对数据统一性安排

    问题: 当App中有多个耦合性不高的页面,而页面之间又牵扯到数据的一致性,此时就会发现什么代理,通知操作起来都会相...

  • iOS中的架构及设计模式

    iOS中的三层架构、四层架构 三层架构 界面层 (MVC、MVP、MVVM) 业务层 数据层(网络数据&本地数据)...

  • IOS三层/四层架构

    ios三层/四层架构是什么: ios三层架构主要是,网络层,逻辑层,UI层。 ios四层架构主要是,网络层,数据层...

  • iOS MVVM架构总结

    参考:iOS 中MVC设计模式iOS MVVM架构iOS MVVM-框架介绍iOS 架构模式MVVM的实践总结iO...

  • iOS架构

    这里说几个概念:iOS系统框架:iOS系统架构:iOS架构:iOS 代码架构:iOS架构师:iOS架构设计: iO...

  • iOS架构

    iOS架构iOS架构

  • 【IOS开发进阶系列】iOS系统架构专题

    1 IOS系统架构 1.1 IOS系统架构 1.1.1 iOS的系统架构 iOS的系统架构分为四个层次:核心操作系...

  • iOS应用架构谈 开篇

    iOS应用架构谈 开篇 iOS应用架构谈 开篇 iOS应用架构谈 view层的组织和调用方案 iOS应用架构谈 网...

  • iOS 架构谈:剖析 Uber 的 RIB 架构

    iOS 架构谈:剖析 Uber 的 RIB 架构iOS 架构谈:剖析 Uber 的 RIB 架构

  • iOS应用架构谈 开篇

    iOS应用架构谈 开篇 iOS应用架构谈 view层的组织和调用方案iOS应用架构谈 网络层设计方案iOS应用架构...

网友评论

    本文标题:iOS 架构中对数据统一性安排

    本文链接:https://www.haomeiwen.com/subject/sygfsttx.html