ARCを有効にしてxcode4.6を使用しています。サーバーからUItableview行にいくつかの画像を追加したいと思います。次のようなエラーが発生します:
malloc:*オブジェクト0xa2b6f50のエラー:解放されるポインターが割り当てられませんでした*デバッグするためにmalloc_error_breakにブレークポイントを設定します
これが私のコードです:
NSURL * imageURL = [NSURL URLWithString:[templateURL stringByAppendingFormat:@ "%@"、[[templateArray objectAtIndex:i] objectForKey:@ "options_picture"]]];
UIImageView *templateView=[[UIImageView alloc]initWithFrame:CGRectMake(x1, y1, wid, ht)];
NSLog(@"templeteArray %@",imageURL);
AsyncronousUIImage *image=[[AsyncronousUIImage alloc]init];
[image loadImageFromURL:imageURL inImageView:templateView];
image.delegate=self;
[templateScroll addSubview:templateView];
AsyncronousUIImageクラスは次のとおりです。
- (void)loadImageFromURL:(NSURL *)anUrl inImageView:(UIImageView*)imgView{
imageView = imgView;
NSURLRequest *request = [NSURLRequest requestWithURL:anUrl
cachePolicy:NSURLRequestReturnCacheDataElseLoad
timeoutInterval:30.0];
connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];}
- (void)connection:(NSURLConnection *)theConnection didReceiveData:(NSData *)incrementalData {
if (data == nil)
data = [[NSMutableData alloc] initWithCapacity:2048];
[data appendData:incrementalData];
}
- (void)connectionDidFinishLoading:(NSURLConnection *)theConnection
{
[self initWithData:data];
data = nil;
connection = nil;
[self.delegate imageDidLoad:self];
}
感謝するどんな助けでも。