ios后臺處理數(shù)據(jù)存儲線程

字號:


    在類中,進(jìn)行編輯下面的代碼:
    nslog(@main thread begin...);
    [self performselectorinbackground:@selector(dosomething:) withobject:nil];
    nslog(@main thread end.....);
    - (void) dosomething:(id)sender
    {
    nslog( @one thread begin... );
    nsautoreleasepool *pool = [[nsautoreleasepool alloc] init];
    for (int i=0; i<self.starname_final.count; i++) {
    [self savetodatabase:[starname_final objectatindex:i]];
    }
    nslog( @one thread end... );
    [pool release];
    }