If i have to display page number as title on uitoolbar at the bottom like this
_toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 960, self.view.bounds.size.width, 45)];
_title1 = [[UIBarButtonItem alloc] initWithTitle:[NSString stringWithFormat:@"Page %u", currentIndex]
style:UIBarButtonItemStylePlain
target:nil
action:nil];
Then is it possible to update page number on UIToolbar when page is turned over