MVC设计模式的主要宗旨是把所有的对象分为三个大类,model类,view类和controller类。
MVC并不是一种设计模式,而是一种架构模式,用以描述应用程序的结构以及结构中各部分的职责和交互方式。
MVC模式能够完成各司其职的任务模式,由于降低了各个环节的耦合性,大大优化Controller的代码量,而且有利于程序的可复用性,建议多多使用这个模式。
MVC模式虽然是iOS编程中使用最广泛的模式,但论起复杂程度,MVC模式可以算是众多模式之首。通常情况下,MVC设计模式需要综合使用target-action模式,delegate模式,Notification模式或KVO模式等。
以上部分摘自:实际案例讲解iOS设计模式——MVC模式
我在界面上放两个按钮red和blue,按下red,界面变成红色;按下blue,界面变成蓝色。
VView.h文件中
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface VView : UIView
@property (nonatomic, strong) UIButton* redButton;
@property (nonatomic, strong) UIButton* blueButton;
- (void) viewInit;
@end
NS_ASSUME_NONNULL_END
VView.m文件中
#import "VView.h"
@implementation VView
- (void) viewInit {
// 创建按钮
self.redButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
self.blueButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
self.redButton.frame = CGRectMake(50, 150, 300, 50);
self.blueButton.frame = CGRectMake(50, 230, 300, 50);
[self.redButton setTitle:@"red" forState:UIControlStateNormal];
[self.blueButton setTitle:@"blue" forState:UIControlStateNormal];
[self.redButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[self.blueButton setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[self addSubview:self.redButton];
[self addSubview:self.blueButton];
}
@end
自定义viewInit
方法用于初始化。
MModel.h文件中
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface MModel : NSObject
// 储存view的颜色数据
@property (nonatomic, strong) NSString* colorString;
- (void) red;
- (void) blue;
@end
NS_ASSUME_NONNULL_END
Model.m文件中
#import "MModel.h"
@implementation MModel
// 重写init方法
- (MModel*) init {
if (self = [super init]) {
// 初始化数据
_colorString = @"red";
// 通知controller视图最初的颜色
[[NSNotificationCenter defaultCenter] postNotificationName:_colorString object:self];
}
return self;
}
- (void) red {
// 更改数据
_colorString = @"red";
// 通知controller视图的颜色
[[NSNotificationCenter defaultCenter] postNotificationName:_colorString object:self];
}
- (void) blue {
// 更改数据
_colorString = @"blue";
// 通知controller视图的颜色
[[NSNotificationCenter defaultCenter] postNotificationName:_colorString object:self];
}
@end
Model在处理完数据之后,通过Notification的方式告知Controller,模型中颜色已经改变,Controller根据根据通知更改View。
ViewController.h文件中
#import <UIKit/UIKit.h>
#import "VView.h"
#import "MModel.h"
@interface ViewController : UIViewController
@property (nonatomic, strong) VView* vView;
@property (nonatomic, strong) MModel* mModel;
@end
ViewController.m文件中
#import "ViewController.h"
#define ScreenWidth [UIScreen mainScreen].bounds.size.width
#define ScreenHeight [UIScreen mainScreen].bounds.size.height
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after blueing the view.
// 加一个通知方法,当收到名为@"red"的通知后,就执行redOK方法
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(redOK:) name:@"red" object:nil];
// 加一个通知方法,当收到名为@"blue"的通知后,就执行blueOK方法
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(blueOK:) name:@"blue" object:nil];
// 初始化vView和mModel
self.vView = [[VView alloc] initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight)];
[self.vView viewInit];
// 为vView中的按钮添加target-action模式
[self.vView.redButton addTarget:self action:@selector(redButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
[self.vView.blueButton addTarget:self action:@selector(blueButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
self.mModel = [[MModel alloc] init];
[self.view addSubview:self.vView];
}
- (void) redOK:(NSNotification*)notification {
// 根据mModel的通知,改变vView
self.vView.backgroundColor = [UIColor redColor];
}
- (void) blueOK:(NSNotification*)notificaton {
// 根据mModel的通知,改变vView
self.vView.backgroundColor = [UIColor blueColor];
}
- (void) redButtonPressed:(UIButton*)sender {
// 调用mMdol的red方法
[self.mModel red];
}
- (void) blueButtonPressed:(UIButton*)sender {
// 调用mMdol的blue方法
[self.mModel blue];
}
@end
在Controller中我们通过Model的通知更改View的展示。