简体   繁体   中英

How to set page number in Page View Control in Objective-c

如何使用Objective-c中的Navigation项在每个页面的页面视图控件顶部设置页码?

self.navigationItem.title=[NSMutableString stringWithFormat:@"(%lu to %lu)",(unsigned long)_dataArray.count,(unsigned long)_indexpath.row+1];

Try this:

// config
UILabel *headlinelabel = [UILabel new];
headlinelabel.font = [UIFont systemFontOfSize:28];
headlinelabel.textColor = [UIColor redColor];

// set title string
headlinelabel.text = @"YourTitle";

[headlinelabel sizeToFit];
[self.navigationItem setTitleView:headlinelabel];

Try this it work for me.

  - (UIViewController *)pageViewController:(UIPageViewController 


  *)pageViewController viewControllerBeforeViewController:(UIViewController


 *)viewController

  {
  NSUInteger index = ((PageViewController*) viewController).pageIndex;

  indexpaths=index;

  self.navigationItem.title=[NSMutableString stringWithFormat:

  @"(%lu to %lu)",(unsigned long)_dataArray.count,

  (unsignedlong)indexpaths+1];

  if ((index == 0) || (index == NSNotFound)) {

    return nil;

  }
  index--;
   return [self viewControllerAtIndex:index];
  }

 - (UIViewController *)pageViewController:(UIPageViewController 

*)pageViewController viewControllerAfterViewController:(UIViewController 

*)viewController

 {

   NSUInteger index = ((PageViewController*) viewController).pageIndex;

   indexpaths=index;

  self.navigationItem.title=[NSMutableString stringWithFormat:@"(%lu to 

   %lu)",(unsigned long)_dataArray.count,(unsigned long)indexpaths+1];


   if (index == NSNotFound) 
     {

     return nil;

   }

   //self.navigationItem.title=[NSMutableString stringWithFormat:@"(%lu

  to %lu)",(unsigned long)_dataArray.count,(unsigned long)indexpaths+1];

  if (index == [self.dataArray count])
   {

    return nil;

  }

 index++;

  return [self viewControllerAtIndex:index];

 }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM