2

iOS6以降、UIImagesに非常に奇妙な問題があり、アプリケーションがクラッシュします。完全な方法は次のようになります。

NSURL *url = [NSURL URLWithString:@"http://api.twitter.com/1/users/show.json"];

NSDictionary *parametros = [NSDictionary dictionaryWithObjectsAndKeys:account.username, @"screen_name", nil];

SLRequest *request = [SLRequest requestForServiceType:SLServiceTypeTwitter
                            requestMethod:SLRequestMethodGET
                            URL:url
                            parameters:parametros];
[request setAccount:account];
[request performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
        if ([urlResponse statusCode] == 200) {
            NSError *error_ = nil;
            NSDictionary *userInfo = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error_];
            UIImage *image = [UIImage imageWithData:[userInfo objectForKey:@"profile_image_url"]];
            UIImage *image = [UIImage imageWithData:[userInfo objectForKey:@"profile_image_url"]];
            dispatch_sync(dispatch_get_main_queue(), ^{
                [_imageCache setObject:image forKey:account.username];
                [ListAccount reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:NO];
            });
        }
    }];

この行で問題が発生します

UIImage *image = [UIImage imageWithData:[userInfo objectForKey:@"profile_image_url"]];

これはiOS5では問題ありませんでした。なぜか、同じ問題を抱えている人を見つけることができないようです。どんな提案も本当にありがたいです

クラッシュは次のとおりです。

2012-09-28 17:30:53.600 Catalogo[7321:c07] -[__NSCFString bytes]: unrecognized selector     sent to instance 0x10eaf180
2012-09-28 17:30:53.601 Catalogo[7321:c07] *** Terminating app due to uncaught exception     'NSInvalidArgumentException', reason: '-[__NSCFString bytes]: unrecognized selector sent to     instance 0x10eaf180'
*** First throw call stack:
(0x2aed012 0x1a28e7e 0x2b784bd 0x2adcbbc 0x2adc94e 0x2a75390 0x203630c 0x2035e7e 0x2035d98     0x10dc23d 0xf991f3 0xf98ef4 0x6c54e 0x1b9e731 0x1bad014 0x1b9d7d5 0x2a93af5 0x2a92f44     0x2a92e1b 0x2dd87e3 0x2dd8668 0xf7765c 0x79cd 0x2d45)
libc++abi.dylib: terminate called throwing an exception

以下:

[userInfo objectForKey:@"profile_image_url"]

Twitterのプロフィール画像のURLを返す

4

1 に答える 1

2

に変換[userInfo objectForKey:@"profile_image_url"]NSDataてからimageWithData:に渡す必要があります。

NSString * profileImageString = [userInfo objectForKey:@"profile_image_url"];
NSData * profileImageData = [profileImageString dataUsingEncoding:NSUTF8StringEncoding];

使用より:

UIImage *image = [UIImage imageWithData:profileImageData];
于 2012-09-28T22:09:51.493 に答える