亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        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];
            }