2009-08-25 13 views
1

私はUITableViewCellのサブクラスを持っていて、それを使用しようとしています。現時点ではテストとして表示罰金を行いますが、私は、コンソールへの漏れエラーが出る...ペン先からのカスタムセル

- (UITableViewCell *)tableView:(UITableView *)tableView 
     cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 

    static NSString *CustomCellIdentifier = @"CustomCellIdentifier "; 

    LeagueCellNormal *cell = (LeagueCellNormal *)[tableView dequeueReusableCellWithIdentifier: CustomCellIdentifier]; 
    if (cell == nil) 
    { 
     NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"LeagueCellNormal" 
                owner:self options:nil]; 
     cell = (LeagueCellNormal *)[nib objectAtIndex:0]; 

    } 
     return cell; 
} 

エラー: -

[Session started at 2009-08-25 06:03:28 +0100.] 
2009-08-25 06:03:40.926 MyApp1[1863:5523] *** _NSAutoreleaseNoPool(): Object 0x14b3f70 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking 
Stack: (0x305a2e6f 0x30504682 0x3094a1a6 0x1d2d2 0x3050a79d 0x3050a338 0x94be6155 0x94be6012) 
2009-08-25 06:03:40.927 MyApp1[1863:5523] *** _NSAutoreleaseNoPool(): Object 0x1492720 of class NSCFArray autoreleased with no pool in place - just leaking 
Stack: (0x305a2e6f 0x30504682 0x3094a09c 0x3094a225 0x1d2d2 0x3050a79d 0x3050a338 0x94be6155 0x94be6012) 
2009-08-25 06:03:40.930 MyApp1[1863:5523] *** _NSAutoreleaseNoPool(): Object 0x14423b0 of class NSCFArray autoreleased with no pool in place - just leaking 
Stack: (0x305a2e6f 0x30504682 0x3094a09c 0x3094a260 0x1d2d2 0x3050a79d 0x3050a338 0x94be6155 0x94be6012) 
+0

解決済み - muppet! detachedスレッドからreloadDataを呼び出したように見えます。私はそれからメインスレッドでこれを行い、すべてが離れました! –

答えて

0

は自分自身を解決 - マペットを! detachedスレッドからreloadDataを呼び出したようです。私はそれからメインスレッドでこれを行い、すべてが離れました!

関連する問題