gpt4 book ai didi

ios - 在 Objective-C 中使用 block 传递数据

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:37:37 26 4
gpt4 key购买 nike

我有两个 View Controller ,分别是 ViewControllerA 和 ViewControllerB。

在 ViewcontrollerB 上有表格 View 单元格。单击表格 View 单元格时,我想将在 ViewControllerB 上选择的数据发送到 ViewControllerA 上的标签。

我知道它可以通过很多方式实现,但是如何通过 block 来实现。请提出建议。

提前致谢!

View Controller B

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *viewArr = [self.array objectAtIndex:indexPath.row];

NSLog(@"the value obtained on cell is %@",viewArr);
ViewController *vc=[[ViewController alloc]init];
vc.aSimpleBlock(viewArr);
}

最佳答案

在你的 ViewController A 中

1) 为 block 声明一个 typedef say typedef void (^simpleBlock)(NSString*);

2) 创建一个像

这样的 block 变量
@property(nonatomic,strong)simpleBlock  aSimpleBlock;

3) 在 vi​​ewDidAppear/viewDidLoad 中定义这个 block

aSimpleBlock = ^(NSString* str){
NSLog(@"Str is the string passed on tableView Cell Click..!!");
};

在你有 tableView 的 ViewController B 中

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

只需将您的 block 称为

your_VC_A_Object.aSimpleBlock("Your_Label_String_here");

关于ios - 在 Objective-C 中使用 block 传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42384215/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com