0

NSOperationでそれを行うことは可能ですか? やってみますが、うまくいかないこともあります。

たとえば、私のシーケンスは次のとおりです。

  1. 4 件のニュースを既読にする
  2. 3 件のニュースを既読にする
  3. 3 件のニュースを既読にする
  4. ニュースソースのリロード
  5. 4 件のニュースを既読にする
  6. ニュースソースのリロード

キューが尊重されていないと思うことがあります...どうすればよいですか? 感謝

例* **

NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:delegate.reader
                                                                        selector:@selector(setUnread:)
                                                                          object:item];

[delegate.queue addOperation:operation];
[operation release];

他の人は最初の 1 の後にこのような開始を要求すると思います...しかし、私が望むのは、最初の 1 が終了したときにのみ 2 が開始されることです...

4

3 に答える 3

0

次のように CustomNSURLConnection クラスを作成します。

CustomNSURLConnection.h

#import <Foundation/Foundation.h>
typedef void (^ServiceBlock)(NSString *result);


@interface CustomNSURLConnection : NSURLConnection
@property (nonatomic, copy) ServiceBlock serviceBlock;
@property (nonatomic, retain) NSMutableData *serviceResponseData;

- (id)initWithRequest:(NSURLRequest *)request delegate:(id)delegate  usingCallback:(ServiceBlock)callBackBlock;
@end

CustomNSURLConnection.m

#import "CustomNSURLConnection.h"

@implementation CustomNSURLConnection

@synthesize serviceBlock, serviceResponseData;

-(id)initWithRequest:(NSURLRequest *)request delegate:(id)delegate  usingCallback:(ServiceBlock)callBackBlock{
    self = [super initWithRequest:request delegate:delegate];
    if (self) {
        self.serviceBlock = callBackBlock;
        self.serviceResponseData = [NSMutableData data];
    }
    return self;  
}


@end

WebServiceHitter.h

#import "CoffeeshopCustomNSURLConnection.h"



@interface WebServiceHitter : NSObject

    @end

WebServiceHitter.m

  @interface CoffeeShopWebServiceHitter()
    @property (nonatomic, retain) NSMutableData *responseData;



#pragma mark - NSURLConnection Delegate Methods

- (void)connection:(CustomNSURLConnection *)connectionDb didReceiveResponse:(NSURLResponse *)response {

    CustomNSURLConnection *specializedNSURLDataConnection = (CustomNSURLConnection *)connectionDb;

    [specializedNSURLDataConnection.serviceResponseData setLength:0];
}

- (void)connection:(CustomNSURLConnection *)connectionDb didReceiveData:(NSData *)data {
   CustomNSURLConnection *specializedNSURLDataConnection = (CoffeeshopCustomNSURLConnection *)connectionDb;
    [specializedNSURLDataConnection.serviceResponseData appendData:data];

}

- (void)connection:(CustomNSURLConnection *)connectionDb didFailWithError:(NSError *)error {

    NSLog(@"Connection failed: %@", [error description]);
}

- (void)connectionDidFinishLoading:(CustomNSURLConnection *)finishedWithConnection {
    CustomNSURLConnection *specializedNSURLConnection = (CustomNSURLConnection*)finishedWithConnection;
    NSString *responseString = [[NSString alloc] initWithData:specializedNSURLConnection.serviceResponseData encoding:NSASCIIStringEncoding];
    specializedNSURLConnection.serviceResponseData = nil;

    specializedNSURLConnection.serviceBlock(responseString); 

}
@end

使用状況に応じて、webservicehitter ファイルで Web サービス リクエストを作成します。

于 2013-07-19T13:33:26.940 に答える
0

シリアル操作キューを探しているように思えます。

maxConcurrentOperationCountオン キューを に設定1するだけで、一度に 1 つの操作のみが実行されます。

これは、操作をキューに追加する前に行う必要があります。以下に示すように、すべての操作ではなく、一度だけ実行する必要があることに注意してください。

delegate.queue.maxConcurrentOperationCount = 1;
[delegate.queue addOperation:someOperation];
于 2013-07-19T13:35:23.500 に答える