iOS 视图之间的各种传值方式

2024-06-24 00:08
文章标签 方式 传值 ios 之间 视图

本文主要是介绍iOS 视图之间的各种传值方式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

属性传值 将A页面所拥有的信息通过属性传递到B页面使用

B页面定义了一个naviTitle属性,在A页面中直接通过属性赋值将A页面中的值传到B页面。


A页面DetailViewController.h文件

#import <UIKit/UIKit.h>

#import "DetailViewController.h"

@interface RootViewController :UIViewController<ChangeDelegate>

{

    UITextField *tf;

}

@end


A RootViewController.m页面实现文件

#import "RootViewController.h"

#import "DetailViewController.h"


@interface RootViewController ()

@end

@implementation RootViewController

//核心代码

-(void)loadView

{

    UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];

    btn.frame = CGRectMake(0010030);

    [btn setTitle:@"Push" forState:0];

    [btn addTarget:self action:@selector(pushAction:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btn];

}

-(void)pushAction:(id)sender

{

    tf = (UITextField *)[self.viewviewWithTag:1000];

    //导航push到下一个页面

    //pushViewController 入栈引用计数+1,且控制权归系统

    

    DetailViewController *detailViewController = [[DetailViewControlleralloc]init];

    //属性传值,直接属性赋值

    detailViewController.naviTitle =tf.text;

    //导航push到下一个页面

    [self.navigationControllerpushViewController:detailViewController animated:YES];

    [detailViewControllerrelease];   

}


B页面DetailViewController.h文件

#import <UIKit/UIKit.h>

@interface DetailViewController :UIViewController

{

   UITextField *textField;

   NSString *_naviTitle;

}

@property(nonatomic,retain)NSString *naviTitle;

@end


B页面.m实现文件

#import "DetailViewController.h"

@interface DetailViewController ()

@end

@implementation DetailViewController

@synthesize naviTitle =_naviTitle;

-(void)loadView

{

    self.view = [[[UIViewalloc]initWithFrame:CGRectMake(0,0320,480)]autorelease];

   self.title = self.naviTitle ;    

}


代理传值 

A页面push到B页面,如果B页面的信息想回传(回调)到A页面,用用代理传值,其中B定义协议和声明代理,A确认并实现代理,A作为B的代理

A页面RootViewController.h文件

#import <UIKit/UIKit.h>

#import "DetailViewController.h"

@interface RootViewController : UIViewController<ChangeDelegate>

{

    UITextField *tf;

}

@end


A页面RootViewController.m实现文件

#import "RootViewController.h"

#import "DetailViewController.h"


@interface RootViewController ()

@end

@implementation RootViewController

//核心代码

-(void)loadView

{

    UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];

    btn.frame = CGRectMake(0010030);

    [btn setTitle:@"Push" forState:0];

    //A页面push到B页面

    [btn addTarget:self action:@selector(pushAction:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btn];

}

-(void)pushAction:(id)sender

{

    tf = (UITextField *)[self.view viewWithTag:1000];

    //导航push到下一个页面

    //pushViewController 入栈引用计数+1,且控制权归系统

    DetailViewController *detailViewController = [[DetailViewController alloc]init]; 

     //代理传值

   detailViewController.delegate =self;//让其自身作为代理人

    //导航push到下一个页面

    [self.navigationController pushViewController:detailViewController animated:YES];

    [detailViewController release];   

}

//实现代理方法

-(void)changeTitle:(NSString *)aStr

{

    tf = (UITextField *)[self.view viewWithTag:1000];

    tf.text = aStr;//将从B页面传入的参数赋给A页面中的TextField

   tf.text = aStr;

}

B页面DetailViewController.m文件

#import <UIKit/UIKit.h>

@interface DetailViewController : UIViewController

{

    UITextField *textField;

    //定义代理

  id<ChangeDelegate>_delegate;

}

@property(nonatomic,assign)id<ChangeDelegate> delegate;

@end

//定义协议

@protocol ChangeDelegate <NSObject>

-(void)changeTitle:(NSString *)aStr;//协议方法

@end



B页面DetailViewController.h实现文件

#import "DetailViewController.h"

@interface DetailViewController ()

@end

@implementation DetailViewController

-(void)loadView

{

    self.view = [[[UIView alloc]initWithFrame:CGRectMake(00320480)]autorelease];

    UIBarButtonItem *doneItem = [[UIBarButtonItemalloc]initWithBarButtonSystemItem:UIBarButtonSystemItemDonetarget:selfaction:@selector(doneAction:)];

    self.navigationItem.rightBarButtonItem = doneItem;

    [doneItemrelease];

}

//pop回前一个页面

-(void)doneAction:(id)sender

{

   if (self.delegate && [self.delegaterespondsToSelector:@selector(changeTitle:)])//若代理存在且响应了changeTitle这个方法

    {

        //[self.delegate changeTitle:textField.text];

        [self.delegatechangeTitle:textField.text];//textField.text参数传给changeTitle方法  让代理,也就是A页面去实现这个方法

        NSLog(@"%@",self.navigationController.viewControllers);

        [self.navigationControllerpopViewControllerAnimated:YES];

    }

}



单例传值(实现共享)


AppStatus.h  创建一个单例类 AppStatus

#import <Foundation/Foundation.h>


@interface AppStatus : NSObject

{

    NSString *_contextStr;

}

@property(nonatomic,retain)NSString *contextStr;
 

+(AppStatus *)shareInstance;


@end

AppStatus.m 
 

#import "AppStatus.h"


@implementation AppStatus

@synthesize contextStr = _contextStr;


static AppStatus *_instance = nil;

+(AppStatus *)shareInstance

{

    if (_instance == nil)

    {

        _instance = [[super alloc]init];

    }

    return _instance;

}


-(id)init

{

    if (self = [super init])

    {

        

    }

    return  self;

}


-(void)dealloc

{

    [super dealloc];

}


@end


A页面RootViewController.h


#import 
"RootViewController.h"

#import "DetailViewController.h"

#import "AppStatus.h"


@interface RootViewController ()


@end


@implementation RootViewController

-(void)loadView

{
    //核心代码 

    UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];

    btn.frame = CGRectMake(0010030);

    [btn setTitle:@"Push" forState:0];

    [btn addTarget:self action:@selector(pushAction:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btn];

}

-(void)pushAction:(id)sender

{

     

    tf = (UITextField *)[self.view viewWithTag:1000];

    

 //单例传值  将要传递的信息存入单例中(共享中)

  //  [[AppStatus shareInstance]setContextStr:tf.text]; 跟下面这种写法是等价的

    [AppStatus shareInstance].contextStr = tf.text;

    //导航push到下一个页面

    //pushViewController 入栈引用计数+1,且控制权归系统

    

    DetailViewController *detailViewController = [[DetailViewController alloc]init];

    

    //导航push到下一个页面

    [self.navigationController pushViewController:detailViewController animated:YES];

    [detailViewController release];

} 
@end
 

B页面
DetailViewController.h


#import <UIKit/UIKit.h>

@protocol ChangeDelegate;//通知编译器有此代理


@interface DetailViewController : UIViewController

{

    UITextField *textField;

}

@end



B页面DetailViewController.m

#import "DetailViewController.h"

#import "AppStatus.h"


@interface DetailViewController ()


@end


@implementation DetailViewController

@synthesize naviTitle = _naviTitle;


-(void)loadView

{

    self.view = [[[UIView alloc]initWithFrame:CGRectMake(00320480)]autorelease];

    

    //单例

    self.title = [AppStatus shareInstance].contextStr;

    

    

    textField = [[UITextField alloc]initWithFrame:CGRectMake(10010015030)];

    textField.borderStyle = UITextBorderStyleLine;

    [self.view addSubview:textField];

    [textField release];


    UIBarButtonItem *doneItem = [[UIBarButtonItem allocinitWithBarButtonSystemItem:UIBarButtonSystemItemDonetarget:self action:@selector(doneAction:)];

    self.navigationItem.rightBarButtonItem = doneItem;

    [doneItem release];

    

}

//这个方法是执行多遍的  相当于刷新view

-(void)viewWillAppear:(BOOL)animated

{

    [super viewWillAppear:animated];

    

    tf = (UITextField *)[self.view viewWithTag:1000];

    tf.text = [AppStatus shareInstance].contextStr;

     

}

//pop回前一个页面

-(void)doneAction:(id)sender

{

    //  单例传值

    [AppStatus shareInstance].contextStr = textField.text;

    [self.navigationController popToRootViewControllerAnimated:YES];

} 

 
通知传值 谁要监听值的变化,谁就注册通知  特别要注意,通知的接受者必须存在这一先决条件


A页面RootViewController.h

#import <UIKit/UIKit.h>

#import "DetailViewController.h"


@interface RootViewController : UIViewController<ChangeDelegate>

{

    UITextField *tf;

}

@end 
 

A页面RootViewController.m
 

#import "IndexViewController.h"

#import "DetailViewController.h"

#import "AppStatus.h"



@implementation IndexViewController


-(void)dealloc

{

    [[NSNotificationCenter defaultCenterremoveObserver:self

                                                    name:@"CHANGE_TITLE" object:nil];

    [super dealloc];

}


-(id)init

{

    if (self = [super init])

    {

        [[NSNotificationCenter defaultCenteraddObserver:self

                                                 selector:@selector(change:)

                                                     name:@"CHANGE_TITLE"

                                                   object:nil];

    }

    return self;

}


-(void)change:(NSNotification *)aNoti

{

    // 通知传值

    NSDictionary *dic = [aNoti userInfo];

    NSString *str = [dic valueForKey:@"Info"];

    

    

    UITextField *tf =  (UITextField *)[self.view viewWithTag:1000];

    tf.text = str;

}

 


-(void)viewWillAppear:(BOOL)animated

{

    [super viewWillAppear:animated];

    

    /*

    // 单例传值

    UITextField *tf =  (UITextField *)[self.view viewWithTag:1000];

    tf.text = [AppStatus shareInstance].contextStr;

    */

}

@end

DetailViewController.h
 

#import <UIKit/UIKit.h>

@protocol ChangeDelegate;//通知编译器有此代理


@interface DetailViewController : UIViewController

{

    UITextField *textField;

}

@end


 DetailViewController.m


#import "DetailViewController.h"

#import "AppStatus.h"



@implementation DetailViewController

@synthesize naviTitle = _naviTitle;


-(void)loadView

{

    

    UIBarButtonItem *doneItem = [[UIBarButtonItem allocinitWithBarButtonSystemItem:UIBarButtonSystemItemDonetarget:self action:@selector(doneAction:)];

    self.navigationItem.rightBarButtonItem = doneItem;

    [doneItem release];

}

// pop回前一个页面

-(void)doneAction:(id)sender

{

    

NSDictionary *dic = [NSDictionary dictionaryWithObject:textField.text forKey:@"Info"];


[[NSNotificationCenter defaultCenterpostNotificationName:@"CHANGE_TITLE" object:nil userInfo:dic];


[self.navigationController popViewControllerAnimated:YES];


}


Block

几种形式的Block

    //无返回值
    void (^block1) (void);
    block1 = ^{
        NSLog(@"bock demo");
    };
    block1();
    
    //int返回类型
    int (^block2) (void);
    block2  = ^(void)
    {
        int a  = 1 ,b =1;
        int c = a+b;
        return  c;
    };
    
    //有返回 有参数
    int (^block3)(int, int)= ^(int a, int b)
    {
        int c = a +b;
        return c;
        
    };
    NSLog(@"bock=%d",block3(1,2));
    
    //有返回值,有参数并且可以修改block之外变量的block
    static int sum = 10;// __blcik and static关键字 或者 _block int sum = 10
    int (^block4) (int) =^(int a)
    {
        sum=11;
        int c = sum+a;   //此时sum就是可以修改的了,若没加static或_block关键字则不能修改block之外变量
        return c;
    };
    NSLog(@"block4= %d",block4(4));


Block传值

例如A(Ablock)页面的值传道B(Bblock)页面  


在A页面中ABlock.h

@interface Ablock : UIViewController<UITableViewDelegate,UITableViewDataSource>
{
    UITableView *_tableview;
    UILabel *labe;
    UIImageView *imagevies;
}
@end


-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [_tableview deselectRowAtIndexPath:indexPath animated:YES];
    
    Bblcok *bblock = [[Bblcok alloc] initwithBlock:Block_copy(^(NSString *aBlock){    
        labe.text = aBlock;
        NSLog(@"%@",aBlock);

    })];
    

    bblock.imgeviews = imagevies.image;
    bblock.String = labe.text;
    [self.navigationController pushViewController:bblock animated:YES];
    [bblock release];
}



在A页面中Bblock.h

#import <UIKit/UIKit.h>
typedef  void (^MyBlock) (NSString *);
@interface Bblcok : UIViewController
{
    UIImageView *image;
    UITextField *aField;
    UIButton *aButt;
    NSString *_String;
    id _imgeviews;
    MyBlock myBlock;
}
@property(nonatomic,copy)MyBlock myBlock;   
@property(nonatomic,retain) id imgeviews;
@property(nonatomic,retain) NSString *String;
-(id)initwithBlock:(MyBlock)aBlcok;
@end


//
//  Bblcok.m
//  Blcok
//
//  Created by zhu  on 13-8-12.
//  Copyright (c) 2013年 Zhu Ji Fan. All rights reserved.
//

#import "Bblcok.h"

@interface Bblcok ()

@end

@implementation Bblcok
@synthesize imgeviews = _imgeviews , String = _String;
@synthesize myBlock = _myBlock;
-(id)initwithBlock:(MyBlock)aBlcok
{
    if (self = [super init])
    {
        self.myBlock = aBlcok; 
    }
    return self;
}

-(void) dealloc
{
    [super dealloc];
}

-(void) loadView
{
    UIControl *cont = [[UIControl alloc] initWithFrame:CGRectMake(0, 0, 320, 568-44)];
    [cont addTarget:self action:@selector(Clcik) forControlEvents:UIControlEventTouchUpInside];
    self.view = cont;
    
    aField = [[UITextField alloc] initWithFrame:CGRectMake(60, 10, 160, 30)];
    aField.borderStyle = UITextBorderStyleLine;
    aField.placeholder = self.String;
    [self.view addSubview:aField];
    
    aButt = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    aButt.frame = CGRectMake(60, 50, 70, 30);
    [aButt setTitle:@"修改" forState:0];
    [aButt addTarget:self action:@selector(aButtClcik:) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:aButt];
    
    image = [[UIImageView alloc] initWithFrame:CGRectMake(60, 100, 210, 260)];
    image.backgroundColor = [UIColor blueColor];
    image.image = self.imgeviews;
    [self.view addSubview:image];
    [image release];

}

-(IBAction)aButtClcik:(id)sender
{
    NSString *sting = aField.text;
    myBlock(sting);
    [self.navigationController popToRootViewControllerAnimated:YES];
}


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

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

@end

这篇关于iOS 视图之间的各种传值方式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

C# 比较两个list 之间元素差异的常用方法

《C#比较两个list之间元素差异的常用方法》:本文主要介绍C#比较两个list之间元素差异,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录1. 使用Except方法2. 使用Except的逆操作3. 使用LINQ的Join,GroupJoin

深度解析Java项目中包和包之间的联系

《深度解析Java项目中包和包之间的联系》文章浏览阅读850次,点赞13次,收藏8次。本文详细介绍了Java分层架构中的几个关键包:DTO、Controller、Service和Mapper。_jav... 目录前言一、各大包1.DTO1.1、DTO的核心用途1.2. DTO与实体类(Entity)的区别1

java实现docker镜像上传到harbor仓库的方式

《java实现docker镜像上传到harbor仓库的方式》:本文主要介绍java实现docker镜像上传到harbor仓库的方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录1. 前 言2. 编写工具类2.1 引入依赖包2.2 使用当前服务器的docker环境推送镜像2.2

springboot项目打jar制作成镜像并指定配置文件位置方式

《springboot项目打jar制作成镜像并指定配置文件位置方式》:本文主要介绍springboot项目打jar制作成镜像并指定配置文件位置方式,具有很好的参考价值,希望对大家有所帮助,如有错误... 目录一、上传jar到服务器二、编写dockerfile三、新建对应配置文件所存放的数据卷目录四、将配置文

gitlab安装及邮箱配置和常用使用方式

《gitlab安装及邮箱配置和常用使用方式》:本文主要介绍gitlab安装及邮箱配置和常用使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1.安装GitLab2.配置GitLab邮件服务3.GitLab的账号注册邮箱验证及其分组4.gitlab分支和标签的

C++中零拷贝的多种实现方式

《C++中零拷贝的多种实现方式》本文主要介绍了C++中零拷贝的实现示例,旨在在减少数据在内存中的不必要复制,从而提高程序性能、降低内存使用并减少CPU消耗,零拷贝技术通过多种方式实现,下面就来了解一下... 目录一、C++中零拷贝技术的核心概念二、std::string_view 简介三、std::stri

Linux脚本(shell)的使用方式

《Linux脚本(shell)的使用方式》:本文主要介绍Linux脚本(shell)的使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录概述语法详解数学运算表达式Shell变量变量分类环境变量Shell内部变量自定义变量:定义、赋值自定义变量:引用、修改、删

python判断文件是否存在常用的几种方式

《python判断文件是否存在常用的几种方式》在Python中我们在读写文件之前,首先要做的事情就是判断文件是否存在,否则很容易发生错误的情况,:本文主要介绍python判断文件是否存在常用的几种... 目录1. 使用 os.path.exists()2. 使用 os.path.isfile()3. 使用

java Long 与long之间的转换流程

《javaLong与long之间的转换流程》Long类提供了一些方法,用于在long和其他数据类型(如String)之间进行转换,本文将详细介绍如何在Java中实现Long和long之间的转换,感... 目录概述流程步骤1:将long转换为Long对象步骤2:将Longhttp://www.cppcns.c

Mybatis的分页实现方式

《Mybatis的分页实现方式》MyBatis的分页实现方式主要有以下几种,每种方式适用于不同的场景,且在性能、灵活性和代码侵入性上有所差异,对Mybatis的分页实现方式感兴趣的朋友一起看看吧... 目录​1. 原生 SQL 分页(物理分页)​​2. RowBounds 分页(逻辑分页)​​3. Page