我有一个UITableView
使用NSMutableArray
. 向下滚动时会更新,这tableview
是通过向NSMutableArray
. 我面临的问题是,每当我从这个页面导航到另一个页面然后再返回时,tableview
无论我做了多少更新,都会将其设置为数组的初始大小(这意味着如果我每次加载十个对象,则即使数组大小为 30,tableview 大小也会恢复为 10,注意:数组大小永远不会改变,只有表内容大小会改变)。我开始相信这与NSMutableArray
. 代码的要点是这样的:
@interface FlowViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
{
UITableView *flowTable;
NSMutableArray *cellData;
}
@property(nonatomic, retain) IBOutlet UITableView *flowTable;
@property(nonatomic, retain) NSMutableArray *cellData;
- (void) getData;
- (void) storeData: (NSMutableArray*) arr;
@end
@implementation FlowViewController
@synthesize cellData;
@synthesize flowTable;
- (void)viewDidLoad
{
[super viewDidLoad];
self.flowTable.autoresizingMask = UIViewAutoresizingFlexibleHeight;
[self.flowTable setDataSource:self];
[self.flowTable setDelegate:self];
self.cellData = [[NSMutableArray alloc] init];
[self getData];
}
- (void) storeData:(NSMutableArray *)arr
{
for(NSDictionary *data in arr)
{
CellObject *det = [[CellObject alloc] init];
// store details
[self.cellData addObject: det];
}
[self.flowTable reloadData];
}
- (void) getData
{
NSString *url = @"http://example.com/";
NSMutableURLRequest *theRequest= [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:10.0];
[theRequest setHTTPMethod:@"GET"];
flowConnection =[[NSURLConnection alloc] initWithRequest:theRequest delegate:self startImmediately:YES];
}
#pragma mark -
#pragma mark Table View Data Source Methods
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.cellData count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *CellIdentifier = @"FlowCell";
MyFlowCell *cell = (MyFlowCell *)[self.flowTable dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"FlowCell" owner:nil options:nil];
// cell = [nib objectAtIndex:0];
for(id currentObject in nib)
{
if([currentObject isKindOfClass:[MyFlowCell class]])
{
cell = (MyFlowCell *)currentObject;
break;
}
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
CellObject *rowItem = [cellData objectAtIndex:indexPath.row];
// set cell data
}
return cell;
}
- (void)tableView:(UITableView *)tableViewdidSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
self.current = indexPath.row;
[self performSegueWithIdentifier:@"flowToAnotherSegue" sender:nil];
}
- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
if ([segue.identifier isEqualToString:@"flowToAnotherSegue"])
{
NewViewController *iv =
segue.destinationViewController;
iv.current = self.current;
iv.data = self.cellData;
}
}
#pragma mark -
#pragma NSURLConnection Delegate Methods
- (void) connection:(NSURLConnection *)_connection didReceiveResponse:(NSURLResponse *)response {
NSLog(@"Receiving response: %@, status %d", [(NSHTTPURLResponse*)response allHeaderFields], [(NSHTTPURLResponse*) response statusCode]);
receivedData = [NSMutableData data];
}
- (void) connection:(NSURLConnection *)_connection didFailWithError:(NSError *)error {
NSLog(@"Connection Failed: %@", error);
}
- (void) connection:(NSURLConnection *)_connection didReceiveData:(NSData *)_data {
[receivedData appendData:_data];
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
// get the new NSMutableArray from receivedData
[self storeData: newMutableArray];
}
#pragma mark -
#pragma mark Deferred image loading (UIScrollViewDelegate)
- (void)scrollViewDidScroll:(UIScrollView *)aScrollView {
if(Bottom reached) {
// load more data
[self getData];
}
}
}
@end
我希望这不是太多。请告诉我我可能会出错的地方。