在ios中加载更多表视图

在ios中加载更多表视图,ios,json,uitableview,Ios,Json,Uitableview,我想在用户从web服务滚动表视图时加载数据。我的web服务包含三个页面,但我只获得一个页面的JSON数据。我的代码类似于 在.h文件中 @property(strong,nonatomic)IBOutlet UITableView *table; @property(strong,nonatomic)NSArray *imagesa; @property(strong,nonatomic)IBOutlet UIActivityIndicatorView *spinner; 并且在.m文件中首先

我想在用户从web服务滚动表视图时加载数据。我的web服务包含三个页面,但我只获得一个页面的JSON数据。我的代码类似于

在.h文件中

@property(strong,nonatomic)IBOutlet UITableView *table;
@property(strong,nonatomic)NSArray *imagesa;
@property(strong,nonatomic)IBOutlet UIActivityIndicatorView *spinner;
并且在.m文件中首先定义两个带有url的宏队列

#define kBgQueue dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0)
#define imgURL [NSURL URLWithString:@"http://www.truemanindiamagazine.com/webservice/news.php"]
然后把它看作

- (void)viewDidLoad
{
[super viewDidLoad];
dispatch_async(kBgQueue, ^{
    jdata = [NSData dataWithContentsOfURL: imgURL];
    [self performSelectorOnMainThread:@selector(fetchedData:) withObject:jdata waitUntilDone:YES];
});
self.table.pagingEnabled=YES;
[self.table reloadData];

-(void)fetchedData:(NSData *)responsedata
{
NSError* error;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:responsedata options:kNilOptions error:&error];
self.imagesa=[json objectForKey:@"data"];
if (self.imagesa.count)
{
    dispatch_async(dispatch_get_main_queue(), ^{
        [self.table reloadData];
    });
}
NSLog(@"images,%@",self.imagesa);
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.imagesa.count;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   static NSString *cellidentifier=@"Cell";
CustumCell *cell=[tableView dequeueReusableCellWithIdentifier:cellidentifier];
if (cell == nil)
{
    NSArray *nib=[[NSBundle mainBundle]loadNibNamed:@"CustumCell" owner:self options:nil];
    cell=[nib objectAtIndex:0];
}

NSDictionary *dict = [self.imagesa objectAtIndex:indexPath.row];
NSString *img2=[dict valueForKey:@"post_image"];
[cell.photoimage sd_setImageWithURL:[NSURL URLWithString:[img2 stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]] placeholderImage:[UIImage imageNamed:@"Hisoka.jpg"] options:SDWebImageProgressiveDownload completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
    dispatch_async(dispatch_get_main_queue(), ^{
        NSLog(@"downloaded");

    });
}];
NSString *name=[dict valueForKey:@"post_title"];
cell.namelabel.text=name;
NSString *des=[dict valueForKey:@"post_content"];
cell.deslabel.text=des;


NSDateFormatter * dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setDateFormat:@"yyyy-MM-dd hh:mm:ss"];
 NSString *date=[dict valueForKey:@"post_date"];
NSDate * dateNotFormatted = [dateFormatter dateFromString:date];
[dateFormatter setDateFormat:@"d-MMM-YYYY"];
NSString * dateFormatted = [dateFormatter stringFromDate:dateNotFormatted];
NSLog(@"Date %@",dateFormatted);
cell.datelabel.text=dateFormatted;
[self.spinner stopAnimating];
self.spinner.hidesWhenStopped=YES;

if (indexPath.row == [self.imagesa count] - 1)
{
    [self.table reloadData];
}
return cell;
}

如何在表视图中获得分页并将更多数据加载到表视图中,就像在android加载更多列表视图中一样

增加页码后,您必须再次呼叫服务。我看不到您为获取数据而传递的任何pagenumber参数。如果您的服务包含3个页面,那么您的服务必须具有pagenumber参数,以便您可以按页面获取数据

-(void)scrollViewDidScroll:(UIScrollView *)scrollView
{
    CGFloat offsetY = scrollView.contentOffset.y;
    CGFloat contentHeight = scrollView.contentSize.height;
    if (offsetY > contentHeight - scrollView.frame.size.height)
    {
       // when your table is at last cell then increase your pagenumber and call service again and send increased pagenumber. 
       pageNum = pageNum + 1;
       [self getData];
    }
}

-(void)getData
{
     dispatch_async(kBgQueue, ^{
          jdata = [NSData dataWithContentsOfURL: imgURL];
          [self performSelectorOnMainThread:@selector(fetchedData:) withObject:jdata waitUntilDone:YES];
     });
}

也许这会对您有所帮助。

它可以工作,但只下载相同的页面数据,而不是发送页面数据。我的url有问题吗???我将pageNum定义为一个nsinger,并给出它的默认值是0,对吗????