iOS页面之间传值的方式(NSUserDefault/Delegate/NSNotification/Block)

iOS页面间传值的方式(NSUserDefault/Delegate/NSNotification/Block)

实现了以下iOS页面间传值:1.委托delegate方式;2.通知notification方式;3.block方式;4.UserDefault或者文件方式;5.单例模式方式;6.通过设置属性,实现页面间传值

在iOS开发中,我们经常会遇到页面间跳转传值的问题,现归纳总结一下:

情况1:A页面跳转到B页面

方法:

在B页面的控制器中,编写对应的属性,在A页面跳转到B页面的地方,给B的属性赋值即可

1
@property(nonatomic) NSInteger flag; //当前<span id="9_nwp" style="width: auto; height: auto; float: none;"><a id="9_nwl" href="http://cpro.baidu.com/cpro/ui/uijs.php?rs=1&u=http%3A%2F%2Fwww%2Edaxueit%2Ecom%2Farticle%2F4452%2Ehtml&p=baidu&c=news&n=10&t=tpclicked3_hc&q=00007110_cpr&k=%CF%B5%CD%B3&k0=%CF%B5%CD%B3&k1=ios&k2=%BF%D8%D6%C6%C6%F7&k3=block&k4=%C8%ED%BC%FE&k5=%C8%ED%BC%FE%BF%AA%B7%A2&sid=61490806c97ccfdf&ch=0&tu=u1704338&jk=1edcfcd1d0eed3ba&cf=29&fv=16&stid=9&urlid=0&luki=7&seller_id=1&di=128" target="_blank" mpid="9" style="text-decoration: none;"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">系统</span></a></span>标示(0:其他传值方式;1:<span id="10_nwp" style="width: auto; height: auto; float: none;"><a id="10_nwl" href="http://cpro.baidu.com/cpro/ui/uijs.php?rs=1&u=http%3A%2F%2Fwww%2Edaxueit%2Ecom%2Farticle%2F4452%2Ehtml&p=baidu&c=news&n=10&t=tpclicked3_hc&q=00007110_cpr&k=block&k0=block&k1=%C8%ED%BC%FE&k2=%C8%ED%BC%FE%BF%AA%B7%A2&k3=%C6%BB%B9%FB&k4=%CF%B5%CD%B3&k5=ios&sid=61490806c97ccfdf&ch=0&tu=u1704338&jk=1edcfcd1d0eed3ba&cf=29&fv=16&stid=9&urlid=0&luki=3&seller_id=1&di=128" target="_blank" mpid="10" style="text-decoration: none;"><span style="color:#0000ff;font-size:14px;width:auto;height:auto;float:none;">block</span></a></span>传值方式)

在A页面的试图控制器

1
2
3
4
5
6
- (IBAction)showSecondView:(id)sender {
     SecondViewController *second = [[SecondViewController alloc] initWithNibName:@ "SecondViewController" bundle:nil];
     second.delegate = self;
     second.flag = 0;
     [self presentViewController:second animated:YES completion:nil];
}

情况2:A页面跳转到B页面,B页面再跳转回A页面

主流方案:

(1)通过委托delegate的方式实现

设置协议及方法
1
 
1
//SecondViewController.h
1
2
3
@protocol secondViewDelegate
-( void )showName:(NSString *)nameString;
@end

设置代理(为防止循环引用,此次采用了weak)

1
 
1
//SecondViewController.h
1
2
3
4
@interface SecondViewController : UIViewController
@property (nonatomic, weak)id<secondViewDelegate> delegate;
@property (nonatomic, copy) a<span id= "0_nwp" style= "width: auto; height: auto; float: none;" ><a id= "0_nwl" href= "http://cpro.baidu.com/cpro/ui/uijs.php?rs=1&u=http%3A%2F%2Fwww%2Edaxueit%2Ecom%2Farticle%2F4452%2Ehtml&p=baidu&c=news&n=10&t=tpclicked3_hc&q=00007110_cpr&k=block&k0=block&k1=%C8%ED%BC%FE&k2=%C8%ED%BC%FE%BF%AA%B7%A2&k3=%C6%BB%B9%FB&k4=%CF%B5%CD%B3&k5=ios&sid=61490806c97ccfdf&ch=0&tu=u1704338&jk=1edcfcd1d0eed3ba&cf=29&fv=16&stid=9&urlid=0&luki=3&seller_id=1&di=128" target= "_blank" mpid= "0" style= "text-decoration: none;" ><span style= "color:#0000ff;font-size:14px;width:auto;height:auto;float:none;" >block</span></a></span> block;
@end
点击按钮传递数组让其显示
1
2
3
4
5
6
7
8
9
//SecondViewController.m
- (IBAction)delegateMethod:(id)sender {
     if ([self notEmpty]) {
         [self.delegate showName:self.nameTextField.text];
         [self dismissViewControllerAnimated:YES completion:nil];
     } else {
         [self showAlert];
     }
}

调用,显示
1
2
3
4
//RootViewController.m
-( void )showName:(NSString *)nameString{
     self.nameLabel.text = nameString;
}
最重要也是最容易忽略的,就是一定要设置delegate的指向。
效果:

(2)通过通知notification的方式实现

在B页面的控制器中,发送通知:
1
2
3
4
5
6
7
8
9
//SecondViewController.m
- (IBAction)notificationMethod:(id)sender {
     if ([self notEmpty]) {
         [[NSNotificationCenter defaultCenter] postNotificationName:@ "ChangeNameNotification" object:self userInfo:@{@ "name" :self.nameTextField.text}];
         [self dismissViewControllerAnimated:YES completion:nil];
     } else {
         [self showAlert];
     }
}

在A页面的控制器中,注册通知:

1
2
3
4
5
6
7
//RootViewController.m
- ( void )viewDidLoad
{
     [super viewDidLoad];
     // Do any additional setup after loading the view from its nib.
     [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(ChangeNameNotification:) name:@ "ChangeNameNotification" object:nil];
}

当我们不使用时,要记得删掉通知:

1
2
3
4
//RootViewController.m
-( void )dealloc{
     [[NSNotificationCenter defaultCenter] removeObserver:self];
}

调用,显示

1
2
3
4
5
6
//RootViewController.m
 
-( void )ChangeNameNotification:(NSNotification*)notification{
     NSDictionary *nameDictionary = [notification userInfo];
     self.nameLabel.text = [nameDictionary objectForKey:@ "name" ];
}

(3)block方式实现

分析:

在B试图控制器中,定义一个block,参数为字符串

1
2
//SecondViewController.h
typedef void (^ablock)(NSString *str);
1
2
3
//SecondViewController.h
 
@property (nonatomic, copy) ablock block;

在B试图控制器中,

1
2
3
4
5
6
7
8
9
10
- (IBAction)blockMethod:(id)sender {
     if ([self notEmpty]) {
         if (self.block) {
             self.block(self.nameTextField.text);
             [self dismissViewControllerAnimated:YES completion:nil];
         }
     } else {
         [self showAlert];
     }
}

在A试图显示,回调block

1
2
3
4
5
6
7
- (IBAction)showSecondWithBlock:(id)sender {
     SecondViewController *second = [[SecondViewController alloc] initWithNibName:@ "SecondViewController" bundle:nil];
     [self presentViewController:second animated:YES completion:nil];
     second.block = ^(NSString *str){
         self.nameLabel.text = str;
     };
}

链接一篇描述block回调挺有意思的文章:http://blog.csdn.net/mobanchengshuang/article/details/11751671

在查阅资料的过程中,我还看到了以下几种方案:

(1)使用SharedApplication,定义一个变量来传递(感觉和单例的方式一样)

(2)使用文件,或者NSUserdefault来传递

1
2
3
4
5
6
7
8
9
//通过文件或者UserDefault方式存值(感觉不太适合此类传值,如果要用文件或者UserDefault方式存值的话,可以考虑此方式)
- (IBAction)userDefaultMethod:(id)sender {
     if ([self notEmpty]) {
         [[NSUserDefaults standardUserDefaults] setObject:self.nameTextField.text forKey:@ "myNameText" ];
         [self dismissViewControllerAnimated:YES completion:nil];
     } else {
         [self showAlert];
     }
}

在A试图控制器显示

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-( void )viewDidAppear:( BOOL )animated{
     [super viewDidAppear:animated];
     //如果想测试通过UserDefault方式传值或者通过单例方式传值,取消以下注释即可
/*
     if ([[[NSUserDefaults standardUserDefaults] objectForKey:@"myNameText"] length] != 0) {
         self.nameLabel.text = [[NSUserDefaults standardUserDefaults] objectForKey:@"myNameText"];
         [[NSUserDefaults standardUserDefaults] setObject:@"" forKey:@"myNameText"];
     }
     DataSource *dataSource = [DataSource sharedDataSource];
     if ([dataSource.myName length] != 0) {
         self.nameLabel.text = dataSource.myName;
         dataSource.myName = @"";
     }
*/
}

(3)通过一个单例的class来传递

B试图控制器

1
2
3
4
5
6
7
8
9
10
//通过单例方式传值(感觉不太适合此类传值,如果要用单例方式传值的话,可以考虑此方式)
- (IBAction)singletonMethod:(id)sender {
     if ([self notEmpty]) {
         DataSource *dataSource = [DataSource sharedDataSource];
         dataSource.myName = self.nameTextField.text;
         [self dismissViewControllerAnimated:YES completion:nil];
     } else {
         [self showAlert];
     }
}

A试图控制器显示

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-( void )viewDidAppear:( BOOL )animated{
     [super viewDidAppear:animated];
     //如果想测试通过UserDefault方式传值或者通过单例方式传值,取消以下注释即可
/*
     if ([[[NSUserDefaults standardUserDefaults] objectForKey:@"myNameText"] length] != 0) {
         self.nameLabel.text = [[NSUserDefaults standardUserDefaults] objectForKey:@"myNameText"];
         [[NSUserDefaults standardUserDefaults] setObject:@"" forKey:@"myNameText"];
     }
     DataSource *dataSource = [DataSource sharedDataSource];
     if ([dataSource.myName length] != 0) {
         self.nameLabel.text = dataSource.myName;
         dataSource.myName = @"";
     }
*/
}
@end

这里面用到了单例模式,编写了DataSource这个类,存放数据

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
//  DataSource.h
//  TestCallBack
//
//  Created by csdc-iMac on 14-12-24.
//  Copyright (c) 2014年 赵黛阳. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface DataSource : NSObject
@property (nonatomic, strong) NSString *myName;
+(DataSource*)sharedDataSource;
@end
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  DataSource.m
//  TestCallBack
//
//  Created by csdc-iMac on 14-12-24.
//  Copyright (c) 2014年 赵黛阳. All rights reserved.
//
 
#import "DataSource.h"
 
@implementation DataSource
+(DataSource *)sharedDataSource{
     static DataSource *dataSource = nil;
     static dispatch_once_t once;
     dispatch_once(&once, ^{
         dataSource = [DataSource new ];
     });
     return dataSource;
}
@end

【基于Python的大麦网自动抢票工具的设计与实现】 随着互联网技术的发展,网络购票已经成为人们生活中不可或缺的一部分。尤其是在文化娱乐领域,如音乐会、演唱会、戏剧等活动中,热门演出的门票往往在开售后瞬间就被抢购一空。为了解决这个问题,本论文探讨了一种基于Python的自动抢票工具的设计与实现,旨在提高购票的成功率,减轻用户手动抢票的压力。 Python作为一种高级编程语言,因其简洁明了的语法和丰富的第三方库,成为了开发自动化工具的理想选择。Python的特性使得开发过程高效且易于维护。本论文深入介绍了Python语言的基础知识,包括数据类型、控制结构、函数以及模块化编程思想,这些都是构建抢票工具的基础。 自动化工具在现代社会中广泛应用,尤其在网络爬虫、自动化测试等领域。在抢票工具的设计中,主要利用了自动化工具的模拟用户行为、数据解析和定时任务等功能。本论文详细阐述了如何使用Python中的Selenium库来模拟浏览器操作,通过识别网页元素、触发事件,实现对大麦网购票流程的自动化控制。同时,还讨论了BeautifulSoup和requests库在抓取和解析网页数据中的应用。 大麦网作为国内知名的票务平台,其网站结构和购票流程对于抢票工具的实现至关重要。论文中介绍了大麦网的基本情况,包括其业务模式、用户界面特点以及购票流程,为工具的设计提供了实际背景。 在系统需求分析部分,功能需求主要集中在自动登录、监控余票、自动下单和异常处理等方面。抢票工具需要能够自动填充用户信息,实时监控目标演出的票务状态,并在有票时立即下单。此外,为了应对可能出现的网络延迟或服务器错误,工具还需要具备一定的错误恢复能力。性能需求则关注工具的响应速度和稳定性,要求在大量用户同时使用时仍能保持高效运行。 在系统设计阶段,论文详细描述了整体架构,包括前端用户界面、后端逻辑处理以及与大麦网交互的部分。在实现过程中,采用了多线程技术以提高并发性,确保在抢票关键环节的快速响应。此外,还引入了异常处理机制,以应对网络故障或程序错误。 测试与优化是确保抢票工具质量的关键步骤。论文中提到了不同场景下的测试策略,如压力测试、功能测试和性能测试,以验证工具的有效性和稳定性。同时,通过对抢票算法的不断优化,提高工具的成功率。 论文讨论了该工具可能带来的社会影响,包括对消费者体验的改善、对黄牛现象的抑制以及可能引发的公平性问题。此外,还提出了未来的研究方向,如增加多平台支持、优化抢票策略以及考虑云服务的集成,以进一步提升抢票工具的实用性。 本论文全面介绍了基于Python的大麦网自动抢票工具的设计与实现,从理论到实践,从需求分析到系统优化,为读者提供了一个完整的开发案例,对于学习Python编程、自动化工具设计以及理解网络购票市场的运作具有重要的参考价值。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值