亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

IOS四種反向傳值的方法

發布時間:2020-08-02 22:53:04 來源:網絡 閱讀:3031 作者:NetworkAD 欄目:移動開發

方法一:使用target-action設計模式

    代碼如下:(由根視圖推出子視圖,再由子視圖推出根視圖,在推出根視圖時,子視圖傳一個color的屬性給根視圖,用來修改根視圖的背景顏色)

根視圖控制器代碼:

//.m文件
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor redColor];
    
    [self createButton];
}

- (void)createButton
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"進入下一個視圖控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    Sub1ViewController * sub1 = [[Sub1ViewController alloc]init];
    
    sub1.view.backgroundColor = [UIColor blueColor];
    
    sub1.target = self;
    
    sub1.action = @selector(changeColor:);
    
    [self presentViewController:sub1 animated:YES completion:nil];
}

- (void)changeColor:(UIColor *)color
{
    self.view.backgroundColor = color;
}

子視圖代碼:

//.h文件

@interface Sub1ViewController : UIViewController
@property (assign,readwrite,nonatomic)id target;
@property (assign,readwrite,nonatomic)SEL action;
@end

//.m文件
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    [self createPopToRootViewBtn];
}

- (void)createPopToRootViewBtn
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"進入根視圖控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    if ([_target respondsToSelector:_action])
    {
        [_target performSelector:_action withObject:[UIColor orangeColor]];
    }
    [self dismissViewControllerAnimated:YES completion:nil];
}

方法二:通知

//.m根視圖
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor redColor];
    
    [self createButton];
    
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(changeColor:) name:@"ChangeColor" object:nil];
}

- (void)createButton
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"進入下一個視圖控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    Sub1ViewController * sub1 = [[Sub1ViewController alloc]init];
    
    sub1.view.backgroundColor = [UIColor blueColor];
    
    [self presentViewController:sub1 animated:YES completion:nil];
}

- (void)changeColor:(NSNotification *)nofi
{
    self.view.backgroundColor = [nofi.userInfo objectForKey:@"color"];
}

子視圖代碼

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    [self createPopToRootViewBtn];
}

- (void)createPopToRootViewBtn
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"進入根視圖控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [[NSNotificationCenter defaultCenter]postNotificationName:@"ChangeColor" object:self userInfo:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor orangeColor],@"color", nil]];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
    
    
}

- (void)btnClick
{
    [self dismissViewControllerAnimated:YES completion:nil];
}

方法三:代碼塊

    根視圖代碼:

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor redColor];
    
    [self createButton];
}

- (void)createButton
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"進入下一個視圖控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    Sub1ViewController * sub1 = [[Sub1ViewController alloc]init];
    
    sub1.view.backgroundColor = [UIColor blueColor];
    
    sub1.MyBlock = ^(UIColor * color)
    {
        self.view.backgroundColor = color;
    };
    
    [self presentViewController:sub1 animated:YES completion:nil];
}

子視圖代碼

//.h文件
@interface Sub1ViewController : UIViewController
@property (copy,nonatomic,readwrite)void (^MyBlock)(UIColor * color);
@end
//.m文件
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    [self createPopToRootViewBtn];
}

- (void)createPopToRootViewBtn
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"進入根視圖控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
    
    
}

- (void)btnClick
{
    _MyBlock([UIColor orangeColor]);
    [self dismissViewControllerAnimated:YES completion:nil];
}

方法四:代理-協議

根視圖代碼

//.h
#import <UIKit/UIKit.h>
#import "Sub1ViewController.h"
@interface ViewController : UIViewController<Sub1ViewControllerDelete>

@end
//.m
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor redColor];
    
    [self createButton];
}

- (void)createButton
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"進入下一個視圖控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
}

- (void)btnClick
{
    Sub1ViewController * sub1 = [[Sub1ViewController alloc]init];
    
    sub1.view.backgroundColor = [UIColor blueColor];
    sub1.delegate = self;
    [self presentViewController:sub1 animated:YES completion:nil];
}

- (void)changeColor:(UIColor *)color
{
    self.view.backgroundColor = color;
}

子視圖控制器

//.h文件
#import <UIKit/UIKit.h>

@protocol Sub1ViewControllerDelete <NSObject>
- (void)changeColor:(UIColor *)color;
@end

@interface Sub1ViewController : UIViewController
@property (assign,nonatomic,readwrite)id <Sub1ViewControllerDelete>delegate;
@end
//.m文件
- (void)viewDidLoad
{
    [super viewDidLoad];
    
    [self createPopToRootViewBtn];
}

- (void)createPopToRootViewBtn
{
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    
    btn.frame = CGRectMake(10, 30, 300, 40);
    [btn setTitle:@"進入根視圖控制器" forState:UIControlStateNormal];
    btn.layer.cornerRadius = 5;
    
    btn.backgroundColor = [UIColor blackColor];
    
    [btn addTarget:self action:@selector(btnClick) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];
    
    
}

- (void)btnClick
{
    [_delegate changeColor:[UIColor orangeColor]];
    
    [self dismissViewControllerAnimated:YES completion:nil];
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

诏安县| 盘锦市| 延寿县| 铜川市| 田东县| 根河市| 府谷县| 阿鲁科尔沁旗| 赤壁市| 武胜县| 玛多县| 汶上县| 碌曲县| 礼泉县| 甘谷县| 宣化县| 武川县| 望江县| 新巴尔虎右旗| 石柱| 若尔盖县| 平原县| 阜康市| 皋兰县| 清河县| 泸西县| 东源县| 原平市| 南和县| 蕲春县| 凤城市| 闸北区| 丹凤县| 吉林省| 昌邑市| 景谷| 新营市| 安远县| 沅江市| 洛南县| 个旧市|