Альтернатива для [NSOperationQueue mainQueue] на ios 3 - PullRequest
0 голосов
/ 12 мая 2011

Что эквивалентно этим операциям на ios3

[NSOperationQueue mainQueue];
[NSOperationQueue currentQueue];

Ответы [ 2 ]

1 голос
/ 12 мая 2011

Там действительно не было эквивалента для + currentQueue. Для + mainQueue вы бы позвонили

- (void)performSelectorOnMainThread:(SEL)aSelector withObject:(id)arg waitUntilDone:(BOOL)wait

с методом, который содержал работу, которую нужно было выполнить в главном потоке.

0 голосов
/ 12 мая 2011

Нет другой альтернативы, кроме как бросить свою.

Примерно так может работа: (не проверено)

@interface NSOperationQueue(MainQueueAdditions) 

+ (NSOperationQueue *) mainQueue;

@end

@implementation NSOperationQueue(MainQueueAdditions)

+ (NSOperationQueue *) mainQueue {
  static NSOperationQueue *queue = nil;
  if(queue == nil) queue = [[NSMainOperationQueue alloc] init];
  return queue;
}
@end

@interface NSMainOperationQueue : NSOperationQueue {}
@end

@implementation NSMainOperationQueue

- (void) addOperation:(NSOperation *) operation {
  [self queueOperationInternal:operation];
}

- (void) addOperationWithBlock:(void (^)(void))block {
   [self queueOperationInternal:[NSBlockOperation blockOperationWithBlock:block]];
}


- (void) queueOperationInternal:(NSOperation *) operation {
   [[NSRunLoop mainRunLoop] performSelector:@selector(start) target:operation argument:nil order:-[operation queuePriority] modes:[NSArray arrayWithObject:NSRunLoopCommonModes]]; 
}

@end
...