The @ selector function in iOS transmits multiple parameters.

Source: Internet
Author: User

The @ selector function in iOS transmits multiple parameters.

1. In general, use the self generator mselector: SEL withObject: id method.

 

[self performSelectorOnMainThread:@selector(testAA:) withObject:[NSArray arrayWithObjects:@1,@2, nil] waitUntilDone:NO];-(void) testAA:(NSArray*)data{     if (data==nil||data.count!=2) {        return;    }    NSInteger num=[(NSString*)data[0] intValue];    NSInteger index=[data[1] intValue];}

2. nstinfo: stores the object for passing parameters in the userInfo Dictionary of NSTimer.

 

 

NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];  [dict setObject:oldView forKey:@oldView];[NSTimer scheduledTimerWithTimeInterval:0.0 target:self selector:@selector(onTimer:) userInfo:dict repeats:NO];  [dict release];- (void)onTimer:(NSTimer *)timer {      UIView *oldView = [[timer userInfo] objectForKey:@oldView];}

3. UIButton class: Set tags to use

 

 

UIButton * markButton = [[UIButton alloc] initWithFrame: CGRectMake (280, 0, 30, 30)]; markButton. tag = @ parameter value; // here is the parameter value you want to pass [markButton addTarget: self action: @ selector (addMark :) forControlEvents: UIControlEventTouchUpInside];-(BOOL) addMark :( UIButton *) btn {NSLog (@%@, btn. tag];}


 

Related Article

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.