The process of block passing values in the UI

Source: Internet
Author: User

Upload the value from TextField in the second file to the lable of the first file

First step: rename typedef void (^passvalueblock) (NSString *);?

@Property Senondviewcontroller:uiviewcontroller

@Property (Nonatomic,strong) Passvalueblock Passvalueblock;

[Email protected]

@interface Senondviewcontroller ()

@Property (Nonatomic,strong) Uitextfield *textfield;

@end

Step Two: Block

-(void) Touchesbegan: (Nsset *) touches withevent: (uievent *) event{

Self.passvalueblock (Self.textfield.text);(This is the point)

[Self dismissviewcontrolleranimated:yes completion:nil];

}?

? The third step receives the value passed in the. m of the first file.

#import "RootViewController.h"

#import "CustomViewController.h"

@interfaceRootViewController ()

@property (Nonatomic,strong) UILabel *label;

@end

-(void) Touchesbegan: (Nsset *) touches withevent: (Uievent *) event

{

Senondviewcontroller? *senondvc=[senondviewcontroller new];

Expand Block

Senondvc?. passvalueblock=^ (NSString *text) {

Self.lable.text=text;

}?;

[SELFSHOWDETAILVIEWCONTROLLER:SENONDVC Sender:nil];

}?

It's just a way of passing values.

Besides, there are some methods, such as attribute transfer value, proxy value, proxy value, etc.

The process of block passing values in the UI

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.