[Code Note] iOS-javasmselecw.mainthread, javasmselector

Source: Internet
Author: User

[Code Note] iOS-javasmselecw.mainthread, javasmselector

Code:

RootViewController. h

#import <UIKit/UIKit.h>@interface RootViewController : UIViewController{    UILabel *label;}@end

 

RootViewController. m

-(Void) viewDidLoad {[super viewDidLoad]; // Do any additional setup after loading the view. self. title = @ "performSelectorOnMainThread";}-(void) touchesBegan :( NSSet *) touches withEvent :( UIEvent *) event {// The role of performSelectorOnMainThread is its name, a selector is executed in the main thread. all calls to the UIKit must be in the main thread. Calls to non-main threads may produce unexpected results and may cause crash, so when you want to execute a piece of code called by the UI in other threads, you need to use this method [self defined mselecw.mainthread: @ selector (loadData) Object: nil waitUntilDone: NO];}-(void) loadData {if (! Label) {label = [[UILabel alloc] init]; label. frame = CGRectMake (50, 80,200,200); label. backgroundColor = [UIColor redColor]; [self. view addSubview: label];} else {[label removeFromSuperview]; label = nil ;}}

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.