【iOS】MVC模式

2024-09-09 06:28
文章标签 模式 ios mvc

本文主要是介绍【iOS】MVC模式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

MVC模式

  • MVC模式
  • MVC模式demo

MVC模式

MVC模式全称为model(模型)view(视图)controller(控制器),他分为三个不同的层分别负责不同的职责。

  • View:该层用于存放视图,该层中我们可以对页面及控件进行布局。
  • Model:模型一般都拥有很好的可复用性,在该层中,我们可以统一管理一些数据。
  • Controlller:该层充当一个CPU的功能,即该应用程序所有的工作都由Controller统一管调控,他负责处理View和Model的事件。

MVC模式降低了各个环节耦合性,优化了Controller中的代码量。

MVC模式中各个层级之间的关系图
在这里插入图片描述
在这个图中,我们可以看出,Model层和View层之间并不会进行直接通信,他们之间是依靠Controller进行通信的。
流程:
点击view,视图响应事件,而后通过代理传递事件到Controller,发起网络请求更新model,model处理完数据,代理或通知给Controller,改变视图样式,完成操作。

MVC模式demo

这里我写了一个登陆注册的demo来学习MVC模式的具体使用。
在这里插入图片描述
下面展示我登陆界面的代码:
LandModel

#import <Foundation/Foundation.h>NS_ASSUME_NONNULL_BEGIN@interface LandModel : NSObject
@property (nonatomic, copy) NSMutableArray* arr1;
@property (nonatomic, copy) NSMutableArray* arr2;
-(void) InitArray;
@endNS_ASSUME_NONNULL_END
#import "LandModel.h"@implementation LandModel
-(void) InitArray
{_arr1 = [[NSMutableArray alloc] init];_arr2 = [[NSMutableArray alloc] init];
}
@end

LandView

#import <UIKit/UIKit.h>NS_ASSUME_NONNULL_BEGIN@interface LandView : UIView
@property (nonatomic, retain) UITextField* textUser;
@property (nonatomic, retain) UITextField* textPassword;
@property (nonatomic, strong) UIButton* btn1;
@property (nonatomic, strong) UIButton* btn2;
-(void) InitButtonAndText;
@endNS_ASSUME_NONNULL_END
#import "LandView.h"@implementation LandView
- (void)InitButtonAndText
{self.textUser = [[UITextField alloc] initWithFrame:CGRectMake(50, 160, 300, 40)];self.textUser.borderStyle = UITextBorderStyleRoundedRect;    self.textUser.placeholder = @"请输入账号";[self addSubview:self.textUser];_textPassword = [[UITextField alloc] initWithFrame:CGRectMake(50, 230, 300, 40)];self.textPassword.borderStyle = UITextBorderStyleRoundedRect;self.textPassword.placeholder = @"请输入密码";[self addSubview:self.textPassword];_btn1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];_btn1.frame = CGRectMake(50, 350, 80, 50);[_btn1 setTitle:@"登陆" forState:UIControlStateNormal];_btn1.tintColor = [UIColor blackColor];[self addSubview:_btn1];_btn2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];_btn2.frame = CGRectMake(170, 350, 80, 50);[_btn2 setTitle:@"注册" forState:UIControlStateNormal];_btn2.tintColor = [UIColor blackColor];[self addSubview:_btn2];
}@end

ViewController

#import <UIKit/UIKit.h>
#import "LandModel.h"
#import "LandView.h"
#import "RegistViewController.h"@interface ViewController : UIViewController<SendDelegate>
@property (nonatomic, strong) LandView* landview;
@property (nonatomic, strong) LandModel* landmodel;
@property (nonatomic, strong) RegistViewController* regist;
@property (nonatomic, retain) UIAlertController* alert;@end
#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {[super viewDidLoad];_landview = [[LandView alloc] init];_landmodel = [[LandModel alloc] init];[self.view addSubview:_landview];[_landmodel InitArray];[_landview InitButtonAndText];[_landview.btn1 addTarget:self action:@selector(login) forControlEvents:UIControlEventTouchUpInside];[_landview.btn2 addTarget:self action:@selector(regist1) forControlEvents:UIControlEventTouchUpInside];
}-(void) login
{for(int i = 0; i < _landmodel.arr1.count; i++) {if([_landview.textUser.text isEqualToString:_landmodel.arr1[i]]&& [_landview.textPassword.text isEqualToString:_landmodel.arr2[i]]) {self.alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"登陆成功" preferredStyle:UIAlertControllerStyleAlert];UIAlertAction *confirmAction = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {}];[self.alert addAction:confirmAction];[self presentViewController:self.alert animated:YES completion:nil];} else {self.alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"用户名或密码错误" preferredStyle:UIAlertControllerStyleAlert];UIAlertAction *confirmAction = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {}];[self.alert addAction:confirmAction];[self presentViewController:self.alert animated:YES completion:nil];}}
}-(void) regist1
{if(!_regist) {_regist = [[RegistViewController alloc] init];}_regist.delegate = self;[self presentViewController:_regist animated:YES completion:nil];
}
- (void)send:(NSMutableArray *)arruser password:(NSMutableArray *)password {_landModel.arr1 = [NSMutableArray arrayWithArray:aarruser];_landModel.arr2 = [NSMutableArray arrayWithArray:password];
}@end

这篇关于【iOS】MVC模式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

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

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

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问

模版方法模式template method

学习笔记,原文链接 https://refactoringguru.cn/design-patterns/template-method 超类中定义了一个算法的框架, 允许子类在不修改结构的情况下重写算法的特定步骤。 上层接口有默认实现的方法和子类需要自己实现的方法

Spring MVC 图片上传

引入需要的包 <dependency><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId><version>1.1</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-

迭代器模式iterator

学习笔记,原文链接 https://refactoringguru.cn/design-patterns/iterator 不暴露集合底层表现形式 (列表、 栈和树等) 的情况下遍历集合中所有的元素

《x86汇编语言:从实模式到保护模式》视频来了

《x86汇编语言:从实模式到保护模式》视频来了 很多朋友留言,说我的专栏《x86汇编语言:从实模式到保护模式》写得很详细,还有的朋友希望我能写得更细,最好是覆盖全书的所有章节。 毕竟我不是作者,只有作者的解读才是最权威的。 当初我学习这本书的时候,只能靠自己摸索,网上搜不到什么好资源。 如果你正在学这本书或者汇编语言,那你有福气了。 本书作者李忠老师,以此书为蓝本,录制了全套视频。 试

利用命令模式构建高效的手游后端架构

在现代手游开发中,后端架构的设计对于支持高并发、快速迭代和复杂游戏逻辑至关重要。命令模式作为一种行为设计模式,可以有效地解耦请求的发起者与接收者,提升系统的可维护性和扩展性。本文将深入探讨如何利用命令模式构建一个强大且灵活的手游后端架构。 1. 命令模式的概念与优势 命令模式通过将请求封装为对象,使得请求的发起者和接收者之间的耦合度降低。这种模式的主要优势包括: 解耦请求发起者与处理者

springboot实战学习(1)(开发模式与环境)

目录 一、实战学习的引言 (1)前后端的大致学习模块 (2)后端 (3)前端 二、开发模式 一、实战学习的引言 (1)前后端的大致学习模块 (2)后端 Validation:做参数校验Mybatis:做数据库的操作Redis:做缓存Junit:单元测试项目部署:springboot项目部署相关的知识 (3)前端 Vite:Vue项目的脚手架Router:路由Pina:状态管理Eleme

状态模式state

学习笔记,原文链接 https://refactoringguru.cn/design-patterns/state 在一个对象的内部状态变化时改变其行为, 使其看上去就像改变了自身所属的类一样。 在状态模式中,player.getState()获取的是player的当前状态,通常是一个实现了状态接口的对象。 onPlay()是状态模式中定义的一个方法,不同状态下(例如“正在播放”、“暂停

软件架构模式:5 分钟阅读

原文: https://orkhanscience.medium.com/software-architecture-patterns-5-mins-read-e9e3c8eb47d2 软件架构模式:5 分钟阅读 当有人潜入软件工程世界时,有一天他需要学习软件架构模式的基础知识。当我刚接触编码时,我不知道从哪里获得简要介绍现有架构模式的资源,这样它就不会太详细和混乱,而是非常抽象和易