模态视图(IOS开发)

本文详细介绍了如何在iOS应用中利用广播通知机制来处理模态视图的呈现、关闭及传递参数的操作。通过实现注册自定义通知并接收回调,有效地管理模态视图的状态,并在视图关闭时进行数据回传。重点展示了UIViewController类中的presentViewController和dismissViewControllerAnimated方法的应用,以及如何通过代码块进行后续操作。

模态:模态视图从屏幕下方滑出来,完成的时候需要关闭这个模态视图,如果不关闭,就不能做别的事情,必须有响应处理的含义。

主视图控制器---》模态视图控制器。主视图控制器与模态视图控制器之间为父子关系。

UIViewController类中,主要有以下两个方法:

presentViewController:animated:completion  呈现模态视图

dismissViewControllerAnimated:completion 关闭模态视图




代码:

ViewController.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController

- (IBAction)regonclick:(id)sender;

@end

ViewController.m

#import "ViewController.h"
#import "RegisterViewController.h"

@interface ViewController ()


@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // 如果要传递参数的时候,应该用委托设计模式或者广播通知机制
    // 这里为广播通知机制
    // 注册一个自定义通知RegisterCompletionNotification,通知到来时候发出registerCompletion:消息,其参数notification中可以包含回传的参数,统一放在NSDictionary字典中
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(registerCompletion:) name:@"RegisterCompletionNotification" object:nil];
    
}
- (void)registerCompletion:(NSNotification *)notification
{
    // 获取参数userInfo,是一个字典
    NSDictionary *theData = [notification userInfo];
    // 获取字典的username索引值
    NSString *username = [theData objectForKey:@"username"];
    
    NSLog(@"username = %@", username);
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (IBAction)regonclick:(id)sender {
    // 使用registerViewController的ID获取视图控制器对象
    UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
    UIViewController *registerViewController = [mainStoryboard instantiateViewControllerWithIdentifier:@"registerViewController"];
    
    // 设定模态视图呈现和关闭时候的动画效果
    // 垂直方向由底向上退出
    registerViewController.modalPresentationStyle = UIModalTransitionStyleCoverVertical;
    
    // 呈现完成时调用completion代码块
    // 代码块问题回头再说
    [self presentViewController:registerViewController animated:YES completion:^{
        NSLog(@"Present Modal View");
    }];
}
@end

ResgisterViewController.h

#import <UIKit/UIKit.h>

@interface RegisterViewController : UIViewController

- (IBAction)done:(id)sender;
@property (weak, nonatomic) IBOutlet UITextField *txtUsername;

@end

ResgisterViewController.m

#import "RegisterViewController.h"

@interface RegisterViewController ()

@end

@implementation RegisterViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

/*
#pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    // Get the new view controller using [segue destinationViewController].
    // Pass the selected object to the new view controller.
}
*/

- (IBAction)done:(id)sender {
    // 关闭模态视图,然后继续调用代码块
    [self dismissViewControllerAnimated:YES completion:^{
        // 代码块
        NSLog(@"Modal View done");
        
        // 创建一个以username为索引的字典对象
        NSDictionary *dataDict = [NSDictionary dictionaryWithObject:self.txtUsername.text forKey:@"username"];
        [[NSNotificationCenter defaultCenter] postNotificationName:@"RegisterCompletionNotification" object:nil
         userInfo:dataDict]; 
    }];
    
    

}
@end


内容概要:本文系统梳理了多个科研领域的前沿研究与技术实现,重点涵盖FDTD方法中的完美匹配层(PML)研究,以及Matlab/Simulink在电磁、电力、控制、通信、信号处理、图像处理、路径规划、能源系统优化等领域的仿真与算法实现。文中列举了大量基于Matlab和Python的科研案例,如风电功率预测、负荷预测、无人机三维路径规划、电池系统故障诊断、雷达模拟、通信编码、微电网优化调度等,并强调结合智能优化算法(如粒子群、遗传算法、深度学习等)提升系统性能。同时,提供了丰富的代码资源与仿真模型,涵盖永磁同步电机控制、逆变器设计、多智能体任务分配、虚拟电厂调度等复杂系统,助力科研人员快速开展复现实验与创新研究。; 适合人群:具备一定编程基础,熟悉Matlab/Python工具,从事电气工程、自动化、通信、人工智能、新能源、控制科学等相关领域研究的研发人员及研究生。; 使用场景及目标:① 学习并实现FDTD仿真中的PML边界条件以有效抑制数值反射;② 掌握Matlab/Simulink在多物理场建模、控制系统设计与优化算法中的综合应用;③ 借助提供的代码资源完成科研复现、课程设计、竞赛项目或工程原型开发; 阅读建议:此资源以科研实战为导向,不仅提供理论方法,更强调代码实现与仿真验证。建议读者结合自身研究方向,按目录顺序查阅相关模块,下载配套代码进行调试与二次开发,以达到学以致用、融会贯通的目的。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值