Simply create private offset variable and increase it each time on success loading.
Let's think this is your web service that gets GET parameters:
http://server.com/?offset=0&amount=20
Your Objective C code will look like this:
In header file:
@interface YourClass
{
uint _offset;
}
@end
In implementation file:
- (void)viewDidLoad {
_offset = 0;
}
- (void)loadFromServer {
NSString *stringURL = [NSString stringWithFormat:@"%@/%@", kServer, _offset];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:stringURL]];
NSString *params = [NSString stringWithFormat:@"offset=%i&amount=20", _offset];
NSData *postData = [params dataUsingEncoding:NSUTF8StringEncoding];
request.HTTPMethod = @"GET";
request.HTTPBody = postData;
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
if (error) {
NSLog(@"Error: %@", error);
}else {
NSError *jsonError;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&jsonError];
_offset += 20;
}
}];
}