iOS (Swift & Objective-C & Xcode)有用的总结iOS入门

设计模式

2015-12-10  本文已影响210人  芝麻绿豆

MVC

概念:

MVC全名是Model View Controller,M:模型 V:视图 C :控制器;用于映射传统的输入、处理和输出功能在一个逻辑的图形化用户界面的结构中。

实现:

注意

观察者模式

KVO

概念:

当指定的对象的属性被修改后,则对象就会接受到通知。每次指定的被观察的对象的属性被修改后,KVO自动通知相应的观察者;是“一对一”的对象通信机制。
注意:KVO只可以监听对象的属性

实现:

[self.view addObserver:self forKeyPath:@"frame" options:NSKeyValueObservingOptionNew|NSKeyValueObservingOptionOld context:NULL];
// id 可以改为真实类型
-(void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context{ 
         if([keyPath isEqualToString:@"frame"]) { 
                frame = [stockForKVO valueForKey:@"frame"]; 
         }
}
- (void)dealloc{
    [self.view removeObserver:self forKeyPath:@"frame"]; 
}

通知(NSNotificationCenter\NSNotification)

概念:

每一个程序都有一个自己的通知中心,即NSNotificationCenter对象。该对象采用单例设计模式,采用defaultCenter方法就可以获得唯一的NSNotificationCenter对象;是“一对多”的对象通信机制。

实现:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(change) name:@"change" object:nil];
 [[NSNotificationCenter defaultCenter] postNotificationName:@"change" object:nil userInfo:nil];
- (void)dealloc{

    [[NSNotificationCenter defaultCenter] removeObserver:self];
}

补充:

通知队列

通知队列是一个缓冲,可以判断什么时候来发布通知!
利用发送通知的 Style,同样可以实现简单的异步!

提示:
    NSNotificationQueue *q = [NSNotificationQueue defaultQueue];
    NSNotification *n = [NSNotification notificationWithName:@"QueueDemoNotification" object:@"hello"];
    [q enqueueNotification:n postingStyle:NSPostWhenIdle coalesceMask:1 forModes:nil];

单例设计模式(Singleton)

概念:

单例模式确保一个类只有一个实例,而且自行实例化并向整个系统提供这个实例,这个类称为单例类。

static id _instance;
+ (instancetype)allocWithZone:(struct _NSZone *)zone
{
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        _instance = [super allocWithZone:zone];
    });
    return _instance;
}
+ (instancetype)sharedClass
{
    return [[self alloc] init];
}
- (id)copyWithZone:(NSZone *)zone
{
    return _instance;
}
- (id)mutableCopyWithZone:(NSZone *)zone
{
    return _instance;
}

代理(delegate)

概念:

用于一个对象“代表”另外一个对象和程序中其他的对象进行交互。
格式:
@property(nonatomic, weak)id<protocol_name> delegate;
即这个代理要遵循某一个协议,只有遵循了这个协议的类对象才具备代理资格。同时代理类必须在头文件中声明遵循这个protocol_name协议并实现其中的@required方法,@optional的方法是可选的。

实现:

@protocol TitleViewDelegate <NSObject>
@optional
- (void)titleViewDelegate:(YANTitleView *)titleView titleLabel:(YANTitleLabel *)label;
@end
@property(nonatomic, weak)id<TitleViewDelegate> delegate_ly;
- (void)titleViewDelegate:(YANTitleView *)titleView titleLabel:(YANTitleLabel *)label{
    // 实现代理方法,实现一些操作;
    [self.contentScroll setContentOffset:CGPointMake(LGScreenW * label.tag, 0) animated:YES];
}

注意:判断代理方法实现没有

    if ([self.delegate_ly respondsToSelector:@selector(titleViewDelegate:titleLabel:)]) {
        [self.delegate_ly titleViewDelegate:self titleLabel:title_lab];
    }

补充:

工厂模式(类工厂)

概念:

定义创建对象的接口,让子类决定实例化哪一个类;工厂方法使得一个类的实例化延迟到其子类;
类工厂方法是一种用于分配、初始化实例并返回一个它自己的实例的类方法。类工厂方法很方便,因为它们允许您只使用一个步骤(而不是两个步骤)就能创建对象.

实现:

系统自带的类工厂方法:

[NSArray array]; 
[NSArray arrayWithArray:<#(NSArray *)#>]; 
[NSDictionary dictionary];
[NSDictionary dictionaryWithObject:<#(id)#> forKey<#(id<NSCopying>)#>];
[NSSet set]; 
[NSSet setWithObject:<#(id)#>];

子父类中的类工厂方法:

@interface Person : NSObject 
+ (id)person; 
@end 

@implementation Person 
+ (id)person { 
          // return [[Person alloc]init]; 
          // 谁调用这个方法,self就代表谁 
          // 注意:以后写类方法创建初始化对象,写self不要直接写类名 
          return [[self alloc]init];
} @end 

@interface Student : Person 
     @property NSString *name; 
@end 

@implementation Student 

@end
上一篇下一篇

猜你喜欢

热点阅读