Ios 다 중 스 레 드 프로 그래 밍: NSOperation 과 NSOperation Queue

2630 단어 Opera
NSOperation 은 추상 적 인 클래스 입 니 다. 하위 클래스 를 사용자 정의 하거나 시스템 으로 정의 할 수 있 습 니 다 NSInvocationOperation    NSBlockOperation
자바 나 변종 언어 에 익숙 하 다 면 NSOperation 은 자바 lang. Runnable 인터페이스 와 비슷 하 다.자바 의 Runnable 과 마찬가지 로 NSOperation 도 확장 을 위 한 디자인 이 며, 최소한 한 가지 방법 만 다시 써 야 합 니 다.NSOperation 에 대한 이 방법 은 - (void) main 입 니 다.NSOperation 을 사용 하 는 가장 쉬 운 방법 은 이 를 NSOperationQueue 에 넣 는 것 이다.작업 이 대기 열 에 들 어가 면 이 대기 열 은 시작 되 고 처리 되 기 시작 합 니 다.이 작업 이 완료 되면 대기 열 이 풀 립 니 다.
 
 NSInvocationOperation:
주요 직책 은 어떤 대상 을 호출 하 는 지 정 된 방법 이다.
-

- (void)viewDidLoad
{
    [superviewDidLoad];
 
    NSInvocationOperation *aOpt = [[NSInvocationOperation alloc]
                                   initWithTarget:self selector:@selector(doSomeThing) object:nil];
    NSOperationQueue *queue = [[NSOperationQueuealloc] init];
    
    [queue addOperation:aOpt];
    
    
    NSLog(@"mian thread");
}
- (void)doSomeThing
{
   //대량의 대 지연 데이터 읽 기 등등
   //permselector OnMainThread 를 사용 하여 얻 은 데 이 터 를 메 인 스 레 드 로 되 돌 릴 수 있 습 니 다.
    NSLog(@"do something");
    for (int counter = 0; counter < 1000;counter++){
        NSLog(@"Count = %d",counter);
    }
}
 
NSBlockOperation:
- (void)viewDidLoad
{
    [superviewDidLoad];
 
    NSInvocationOperation *aOpt = [NSBlockOperation blockOperationWithBlock:^{
        NSLog(@"Main Thread = %@", [NSThreadmainThread]);
        NSLog(@"Current Thread = %@", [NSThreadcurrentThread]);
        for (int counter = 0; counter < 1000;counter++){
            NSLog(@"Count = %d", counter);
        }
    }];
    NSOperationQueue *queue = [[NSOperationQueuealloc] init];
    
    [queue addOperation:aOpt];
    
    NSLog(@"mian thread");
}
 
 
 
 
 

좋은 웹페이지 즐겨찾기