iOS技术总结(Block)[整理]
摘要:
. Block代码块结构及几种类型
. __block使用
.使用block在两个界面中传值问题
官方文档:苹果的文档
概括
代码块本质上是和其他变量类似。不同的是,代码块存储的数据是一个函数体。使用代码块是,你可以像调用其他标准函数一样,传入参数数,并得到返回值。
脱字符(^)是块的语法标记。按照我们熟悉的参数语法规约所定义的返回值以及块的主体(也就是可以执行的代码)。下图是如何把块变量赋值给一个变量的语法讲解:
按照调用函数的方式调用块对象变量就可以了:int result = myBlock(4);
// result是 28
下面的代码假设是写在ViewController子类中的
1、第一部分
定义和使用Block,
- (void)viewDidLoad{
[super viewDidLoad];
//(1)定义无参无返回值的Block
void (^printBlock)() = ^(){
printf("no number");
};
printBlock();
printBlock(9);
//(2)定义一个有参数,没有返回值的Block
void (^printNumBlock)(int) = ^(int num){
printf("int number is %d",num);
};
//(3)定义名为myBlock的代码块,返回值类型为int
int (^myBlock)(int) = ^(int num){
return num*mutiplier;
}
//使用定义的myBlock
int newMutiplier = myBlock(3);
printf("newMutiplier is %d",myBlock(3));
}
2、第二部分
** __block关键字的使用**
在Block的{}体内,是不可以对外面的变量进行更改的,比如下面的语句,
//将Block定义在方法内部
int x = 100;
void (^sumXAndYBlock)(int) = ^(int y){
x = x+y;
printf("new x value is %d",x);
};
sumXAndYBlock(50);
}
这段代码有什么问题呢,Xcode会提示x变量错误信息:Variable is not assigning (missing __block type),这时候给int x = 100;
语句前面加上__block关键字即可,如下,
__block int x = 100;
这样在Block的{}体内,就可以修改外部变量了。
3、第三部分:Block作为property属性实现页面之间传值
需求: 在ViewController中,点击Button,push到下一个页面NextViewController,在NextViewController的输入框TextField中输入一串字符,返回的时候,在ViewController的Label上面显示文字内容,
(1)第一种方法:首先看看通过“协议/代理”是怎么实现两个页面之间传值的吧,
//NextViewController是push进入的第二个页面
//NextViewController.h 文件
//定义一个协议,前一个页面ViewController要服从该协议,并且实现协议中的方法
@protocol NextViewControllerDelegate <NSObject>
- (void)passTextValue:(NSString *)tfText;
@end
@interface NextViewController : UIViewController
@property (nonatomic, assign) id<NextViewControllerDelegate> delegate;
@end
//NextViewController.m 文件
//点击Button返回前一个ViewController页面
-(IBAction)popBtnClicked:(id)sender {
if (self.delegate && [self.delegate respondsToSelector:@selector(passTextValue:)]) {
//self.inputTF是该页面中的TextField输入框
[self.delegate passTextValue:self.inputTF.text];
}
[self.navigationController popViewControllerAnimated:YES];
}
接下来我们在看看ViewController文件中的内容,
//ViewController.m 文件
@interface ViewController ()<NextViewControllerDelegate>
@property (strong, nonatomic) IBOutlet UILabel *nextVCInfoLabel;
@end
//点击Button进入下一个NextViewController页面
- (IBAction)btnClicked:(id)sender{
NextViewController *nextVC = [[NextViewController alloc] initWithNibName:@"NextViewController" bundle:nil];
nextVC.delegate = self;//设置代理
[self.navigationController pushViewController:nextVC animated:YES];
}
//实现协议NextViewControllerDelegate中的方法
#pragma mark - NextViewControllerDelegate method
- (void)passTextValue:(NSString *)tfText{
//self.nextVCInfoLabel是显示NextViewController传递过来的字符串Label对象
self.nextVCInfoLabel.text = tfText;
}
这是通过“协议/代理”来实现的两个页面之间传值的方式。
(2)第二种方法:使用Block作为property,实现两个页面之间传值,
先看看NextViewController文件中的内容,
//NextViewController.h 文件
@interface NextViewController : UIViewController
@property (nonatomic, copy) void (^NextViewControllerBlock)(NSString *tfText);
@end
//NextViewContorller.m 文件
- (IBAction)popBtnClicked:(id)sender {
if (self.NextViewControllerBlock) {
self.NextViewControllerBlock(self.inputTF.text);
}
[self.navigationController popViewControllerAnimated:YES];
}
再来看看ViewController文件中的内容,
- (IBAction)btnClicked:(id)sender{
NextViewController *nextVC = [[NextViewController alloc] initWithNibName:@"NextViewController" bundle:nil];
nextVC.NextViewControllerBlock = ^(NSString *tfText){
[self resetLabel:tfText];
};
[self.navigationController pushViewController:nextVC animated:YES];
}
#pragma mark - NextViewControllerBlock method
- (void)resetLabel:(NSString *)textStr{
self.nextVCInfoLabel.text = textStr;
}
简单总结加深理解,难登大雅之堂,勿喷~