美文网首页
iOS 六种基本的传值方式

iOS 六种基本的传值方式

作者: lucky雄 | 来源:发表于2017-09-15 11:46 被阅读0次

1、属性传值

利:正向传值、简单单一

弊:不能反向传值,也不能 跨页面传值

NextViewController* next = [[NextViewControlleralloc]initWithNibName:@"NextViewController"bundle:nil];

//1、属性传值---正向传值

next.str=@"属性传值";

2、单例传值

利:正向/方向传值,跨页面,数据写入内存,从内存读取

弊:需要单例类,并需要创建单例对象

[DefaultInstanceshareInstance].text=@"单例传值”;

DefaultInstance* discrip = [DefaultInstanceshareInstance];

// 2、单例传值  取值

self.textField.text= [DefaultInstanceshareInstance].text;

3、NSUserDefaults传值

利:正向/方向传值,跨页面,数据写入沙盒文件、然后去取

弊:

[[NSUserDefaultsstandardUserDefaults]setObject:@"NSUserDefaults传值"forKey:@"NSUserDefaults”];

self.textField.text= [[NSUserDefaultsstandardUserDefaults]objectForKey:@"NSUserDefaults"];

4、代理传值

利:经典传值,反向传值

弊:1对1 的传值,需要建立代理关系,写法复杂

next.delegate=self;

//代理传值--实现协议方法--接受来自页面2的值

- (void)passValue:(NSString*)str{

self.label.text= str;

}

@protocolPassValueDelegate

- (void) passValue:(NSString* )str;

@end

@property(nonatomic,weak)id delegate;//委托方持有协议,weak防止循环引用

if([_delegateconformsToProtocol:@protocol(PassValueDelegate)] && [_delegaterespondsToSelector:@selector(passValue:)]){

[self.delegatepassValue:_textField.text];

}

5、Block传值

利:苹果主推的传值方式,写法简单,可以实现所有代理的功能。

弊:1对1 的传值,反向传值

@property(nonatomic,copy)void(^block)(NSString* str);

self.block(_textField.text);

next.block= ^(NSString*str) {

self.label.text= str;

};

6、通知传值

利:多对多传值、跨页面,nil为群发

弊:类似有  收音机广播 :收音机必须打开

、、、

[[NSNotificationCenterdefaultCenter]postNotificationName:@"notify"object:niluserInfo:@{@"not":self.textField.text}];

[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(nothandle:)name:@"notify"object:nil];

- (void)nothandle:(NSNotification*)not{

self.label.text= not.userInfo[@"not"];

}

、、、

```

    _analysisConentStr= analysisConentStr;

    NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:analysisConentStr];;

    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init];

    [paragraphStylesetLineSpacing:10];

    [attributedStringaddAttribute:NSParagraphStyleAttributeNamevalue:paragraphStylerange:NSMakeRange(0, analysisConentStr.length)];

    self.contentLab.attributedText= attributedString;```

总结:(1、2、3)可以正向传值,(2、3、4、5)可以反向传值

```

/**

 * Set the imageView `image` with an `url` and optionally a placeholder image.

 *

 * The download is asynchronous and cached.

 *

 *@paramurl            The url for the image.

 *@paramplaceholder    The image to be set initially, until the image request finishes.

 *@paramoptions        The options to use when downloading the image.@seeSDWebImageOptions for the possible values.

 *@paramoperationKey  A string to be used as the operation key. If nil, will use the class name

 *@paramsetImageBlock  Block used for custom set image code

 *@paramprogressBlock  A block called while image is downloading

 *                      @notethe progress block is executed on a background queue

 *@paramcompletedBlock A block called when operation has been completed. This block has no return value

 *                      and takes the requested UIImage as first parameter. In case of error the image parameter

 *                      is nil and the second parameter may contain an NSError. The third parameter is a Boolean

 *                      indicating if the image was retrieved from the local cache or from the network.

 *                      The fourth parameter is the original image url.

 *@paramcontext        A context with extra information to perform specify changes or processes.

 */

- (void)sd_internalSetImageWithURL:(nullableNSURL*)url

                  placeholderImage:(nullableUIImage*)placeholder

                           options:(SDWebImageOptions)options

                      operationKey:(nullableNSString*)operationKey

                     setImageBlock:(nullableSDSetImageBlock)setImageBlock

                          progress:(nullableSDWebImageDownloaderProgressBlock)progressBlock

                         completed:(nullableSDExternalCompletionBlock)completedBlock

                           context:(nullableNSDictionaryid> *)context;

```

相关文章

  • iOS 六种基本的传值方式

    1、属性传值 利:正向传值、简单单一 弊:不能反向传值,也不能 跨页面传值 NextViewController*...

  • Vue组件间关系及六种传值方式

    前言: 六种传值方式为: 属性传值 $refs $parent 通知传值(广播传值) 本地传值 路由传值 在介绍组...

  • iOS页面传值——六大方式汇总

    *对比总结了页面传值六种方式,以便更好地记忆和应用:1、属性传值2、单例传值3、NSUserDefaults传值4...

  • 几种iOS界面之间的传值方式

    几种iOS界面之间的传值方式 一.正向传值方式 (BOOL)application:(UIApplication ...

  • iOS之传值

    在iOS中传值的方式有很多种方式,有最普遍的就是属性传值,代理传值,block传值等方式了。写了OC和swift的...

  • 页面传值-03

    一、传值分类 页面传值基本分为两种:正向传值和反向传值。 二、传值方式 传值,最基本的无非就是代理传值、通知传值、...

  • iOS 页面(代理、通知、block、单例、属性)传值

    一、传值分类 页面传值基本分为两种:正向传值和反向传值。 二、传值方式 传值,最基本的无非就是代理传值、通知传值、...

  • iOS传值方式

    在iOS中,常见的传值方式有以下几种:1.属性传值2.单例传值3.通知传值4.代理传值5.Block这些传值方式,...

  • iOS 常用传值方式

    总结 iOS 日常开发中的几种常用传值方式:正向传值代理传值block传值通知传值单例 文章代码:https://...

  • iOS 传值方法(属性传值、代理传值、Block、通知、单例)

    iOS 传值方法(属性传值、代理传值、Block、通知、单例)简单的介绍一下几个传值方式 1、属性传值 在传值的时...

网友评论

      本文标题:iOS 六种基本的传值方式

      本文链接:https://www.haomeiwen.com/subject/hcbrsxtx.html