PageViewControllerView下段にTOOLBAR表示

平成26年11月21日(金曜日)

  • storyboardにてTOOLBARを追加
  • TOOLBARのconstraints設定(左右と下 共に0)

[objc]
// 下段 TOOLBAR 有り
// Change the size of page view controller
self.pageViewController.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height – 40);
//
[/objc]