博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
block
阅读量:5070 次
发布时间:2019-06-12

本文共 1454 字,大约阅读时间需要 4 分钟。

反向传值

第二个类中:

@interface NationNumberViewController : BaseViewController

@property (nonatomic, strong)void (^selectBlock)(NSString *num);

@end

 

#pragma mark ------- tableViewDelegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    if (_selectBlock) {

        _selectBlock([_tableViewDatasource[indexPath.section] objectForKey:@"data"][indexPath.row][2]);

    }

    [self.navigationController popViewControllerAnimated:YES];

}

 第一个类中:

-(void)arrowBtnClick:(NationBtn *)button

{

    NationNumberViewController * nationVC=[[NationNumberViewController alloc]init];

    nationVC.selectBlock=^(NSString *num){

        [button setTitle:num forState:UIControlStateNormal];

    };

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

}

 赋值

  NationBtn * nationBtn=[[NationBtn alloc]initWithFrame:CGRectMake(15, 0, 80, 44)];

    if (nationBtn.titleLabel.text.length==0) {

        [nationBtn setTitle:@"+86" forState:UIControlStateNormal];

    }

        __block NationBtn *myTell = nationBtn;

        _nation.selectBlock = ^(NSString *num){

            // 在这里设置 下面TextField 区号就好了

            [myTell setTitle:num forState:UIControlStateNormal];

        };

    [nationBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

    [nationBtn setImage:[UIImage imageNamed:@"arrow"] forState:UIControlStateNormal];

    [nationBtn addTarget:self action:@selector(arrowBtnClick:) forControlEvents:UIControlEventTouchUpInside];

    [registerBg addSubview:nationBtn];

    

 

转载于:https://www.cnblogs.com/momosmile/p/5287555.html

你可能感兴趣的文章
spring security 11种过滤器介绍
查看>>
代码实现导航栏分割线
查看>>
大数据学习系列(8)-- WordCount+Block+Split+Shuffle+Map+Reduce技术详解
查看>>
【AS3代码】播放FLV视频流的三步骤!
查看>>
枚举的使用
查看>>
luogu4849 寻找宝藏 (cdq分治+dp)
查看>>
日志框架--(一)基础篇
查看>>
关于源程序到可运行程序的过程
查看>>
转载:mysql数据库密码忘记找回方法
查看>>
scratch少儿编程第一季——06、人在江湖混,没有背景怎么行。
查看>>
C# Async与Await的使用
查看>>
Mysql性能调优
查看>>
iOS基础-UIKit框架-多控制器管理-实例:qq界面框架
查看>>
自定义tabbar(纯代码)
查看>>
小程序底部导航栏
查看>>
poj1611 简单并查集
查看>>
Ubuntu 14.04下安装CUDA8.0
查看>>
跨平台开发 -- C# 使用 C/C++ 生成的动态链接库
查看>>
C# BS消息推送 SignalR介绍(一)
查看>>
WPF星空效果
查看>>