0

StreamScreen UIViewController クラスで宣言した @property を変更しようとすると、(lldb) エラーが発生します。

asyncRequest 成功ブロックで feedList オブジェクトを変更しようとしています。asyncRequest メソッドは、私がインポートしたクラス メソッドであり、NSURLConnection-block という私のクラスの一部です。

そう...

StreamScreen のブロック内の StreamScreen の一部である NSMutableArray (feedList) を変更しようとしています。そのブロックは別のクラスのクラス メソッド (asyncRequest) によって呼び出されますが、エラーが発生します。

Debug Navigator で私が得る -error: address doesn't contain a section that points to a section in a object file

これが私のコードの一部です...

ここで、feedList @property (StreamScreen.h) を宣言します。

@property (strong, nonatomic) NSMutableArray *feedList;

以下のコードは、(StreamScreen.m) の asyncRequest クラス メソッドを使用した getStream メソッドです。

- (void)getStream {
    NSString *fbAccessToken = [[[FBSession activeSession] accessTokenData] accessToken];
    NSString *urlString = [NSString stringWithFormat: @"http://198.199.71.169/getFB.php?at=%@", fbAccessToken];
    NSURL *url = [[NSURL alloc] initWithString:urlString];
    NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url];
    [NSURLConnection asyncRequest:request
                          success:^(NSData *data, NSURLResponse *response) {
                              NSLog(@"%@", feedList);
                          }
                          failure:^(NSData *data, NSError *error) {
                              NSLog(@"Error! %@",[error localizedDescription]);
                          }];
}

feedList NSMutableArray をインスタンス化し、viewDidLoad メソッドで getStream メソッドを呼び出します。

- (void)viewDidLoad
{
    [super viewDidLoad];
    feedList = [[NSMutableArray alloc] initWithObjects:@"zero", @"one", @"two", nil];
    [self getStream];    
}

編集:

ここに NSURLConnection-block.m があります

#import "NSURLConnection-block.h"

@implementation NSURLConnection (block)

#pragma mark API
+ (void)asyncRequest:(NSURLRequest *)request success:(void(^)(NSData *,NSURLResponse *))successBlock_ failure:(void(^)(NSData *,NSError *))failureBlock_
{
    [NSThread detachNewThreadSelector:@selector(backgroundSync:) toTarget:[NSURLConnection class]
                           withObject:[NSDictionary dictionaryWithObjectsAndKeys:
                                       request,@"request",
                                       successBlock_,@"success",
                                       failureBlock_,@"failure",
                                       nil]];
}

#pragma mark Private
+ (void)backgroundSync:(NSDictionary *)dictionary
{
    //NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    void(^success)(NSData *,NSURLResponse *) = [dictionary objectForKey:@"success"];
    void(^failure)(NSData *,NSError *) = [dictionary objectForKey:@"failure"];
    NSURLRequest *request = [dictionary objectForKey:@"request"];
    NSURLResponse *response = nil;
    NSError *error = nil;
    NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
    if(error)
    {
        failure(data,error);
    }
    else
    {
        success(data,response);
    }
    //[pool release];
}


@end

ここに NSURLConnection-block.h があります

#import <Foundation/Foundation.h>

@interface NSURLConnection (block)
#pragma mark Class API Extensions
+ (void)asyncRequest:(NSURLRequest *)request success:(void(^)(NSData *,NSURLResponse *))successBlock_ failure:(void(^)(NSData *,NSError *))failureBlock_;
@end

誰かが私を助けてくれることを願っています。本当に感謝します!:)

4

3 に答える 3

0

おそらく、マルチスレッド環境が原因でエラーが発生します。

これを成功ブロックに入れるとどうなりますか?:

dispatch_async(dispatch_get_main_queue(), ^{
    NSLog(@"%@",self.feedList);
});
于 2013-04-12T22:14:17.663 に答える