SlideOutMenu」カテゴリーアーカイブ

サイドメニュー関連

平成30年3月13日(火曜日)

参考サイト

jonkykong/SideMenu

以前のもの
Simple Slide Out Navigation Menu in iOS with Swift (Part 2)

過去ログ(コピー)
developper log

XCODE7_PROJECT(SWIFT2)
//——————————————————

平成27年10月15日(木曜日)

menu Simple Slide Out Navigation Menu in iOS with Swift (Part 1) Shadowも解決してOK!!
http://dennissuratna.com/slide-out-navigation-swift/

//——————————————————
平成27年10月4日(日曜日)
swift view shadow  検索KEY WORD!!
BUTTONはOK!!なれど スライドビューへのShadowはうまく行かず
How to Create Your Own Slide-Out Navigation Panel in Swift
↑は、swift2では、実行不可!!ソースを参考に先にsimple sideを修正し、ShadowOK!!
ContainerViewController
rightViewController

//
didSet{
self.view!.addSubview(self.rightViewController!.view)
self.addChildViewController(self.rightViewController!)
// 以下追加
self.rightViewController!.view.layer.shadowColor = UIColor.redColor().CGColor
self.rightViewController!.view.layer.shadowOffset = CGSizeMake(5, 5)
self.rightViewController!.view.layer.shadowRadius = 5
self.rightViewController!.view.layer.shadowOpacity = 0.9
}
//
//——————————————————

九州・別府温泉道UPDATE

平成28年6月17日(金曜日)

永世・九州・別府八湯 ITUNES CONNECT UPLOAD!! 審査待ち!!(温泉データ更新)

平成28年6月16日(木曜日)
温泉施設変更(新規・脱退)に伴うVERUP作業について

csvファイルの末尾にCR削除に注意!!

サイドメニュー(sidebarmene sidemenu)のスライド時間変更
SWRevealView内
– (void)_initDefaultProperties
{
_toggleAnimationDuration = 0.5;

0.3から0.5に変更!!

Slide Out Menu

平成27年2月12日(木曜日)

How to Make a Slide Out Menu with Objective-C in Xcode
スライドアウトメニュー
You Tube — How to Make a Slide Out Menu with Objective-C in Xcode
How To Add a Slide-out Sidebar Menu in Your Apps

  1. SingleviewApplication
  2. device iphone
  3. download files and copy (SWRevealViewController)
  4. storyboard view class change(SWRevealViewController)
  5. storyboard tableviewcontroller navigationcontroller drug
  6. navigationcontroller tableview delete viewcontroller drug
  7.  ctrl & drug navigationcontroller → view controller
  8. ctrl & drug → tableview controller (revealviewcontroller)   sw_real デモ版ではrevealviewcontroller set
  9. ctrl & drug → navigation view controller (revealviewcontroller) sw_front デモ版ではrevealviewcontroller set
  10. view controller class change viewcontroller
  11. property uibarbuttonitem barbutton (demoでは、sidebarButton)
  12. storyboard bar button item add view file connect
  13. import SWRevealViewController
  14. viewdidload _barbutton.target = seld.RevealViewControlle
  15. viewdidload _barbutton.action = @selector(Revealtoggle:)
  16. gesturerecognize (pan)
  17. run
  18. tableviewcontroller class file create connect
  19. nsarray menu viewloaded initialize(first second)
  20. sectoin = 1
  21.  numberofrows menu.count
  22. cellforrowindexpath
  23. cell protypecell = 2 style basic
  24. cell title hello world
  25. cell identifier first second
  26. cell and table color backgroundcolor
  27. storyboard上にて viewcontroller 複数コピー (cellタップ遷移対応)
  28. 各cellからview controller ctrl+ドラッグ revealviewcontroller
  29. tableview segue
  30. tableview import SWRevealViewController