【发布时间】:2010-04-23 12:57:34
【问题描述】:
我希望删除 UITablewView 的所有行
UITableView是“atableview”,它的数据源是“fileArray”。
NSMutableArray *fileArray;
fileArray 是对象 MYFileObj 的 NSMutableArray
#import <UIKit/UIKit.h>
NSMutableArray *fileArray;
@interface MYFileObj : NSObject {
NSString *fileName;
}
-(void) setFileName:(NSString *)s ;
-(NSString *) FileName ;
@end
我先加载fileArray,然后调用[atableview reloadData];
做完某事后,我希望重新加载fileArray并重新绘制atableview,所以我调用
-(void) removeACell:(NSInteger)row;
{
NSUInteger _lastSection = 0;//[self numberOfSectionsInTableView:atableview];
NSUInteger _lastRow =row;// [atableview numberOfRowsInSection:_lastSection] - 1;
NSUInteger _path[2] = {_lastSection, _lastRow};
NSIndexPath *_indexPath = [[NSIndexPath alloc] initWithIndexes:_path length:2];
NSArray *_indexPaths = [[NSArray alloc] initWithObjects:_indexPath, nil];
[_indexPath release];
[atableview deleteRowsAtIndexPaths:_indexPaths withRowAnimation: UITableViewRowAnimationNone];
[_indexPaths release];
}
-(void) reloadList;
{
if([fileArray count]>0) //----the begining of the codes cause memory leak
{ //I hope to remove all rows and reload fileArray
NSInteger n=fileArray.count;
[atableview beginUpdates];
for(int i=n-1;i>=0;i--)
{
[fileArray removeObjectAtIndex:i];
[self removeACell:i];
}
[fileArray release];
[atableview endUpdates];
} //----the end of the codes cause memory leak
//load fileArray again
[atableview reloadData];
}
但我发现这会导致内存泄漏。
欢迎任何评论。
谢谢
交互开发
【问题讨论】:
标签: iphone