• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
How to make UISplitViewController behave ?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

How to make UISplitViewController behave ?


  • Subject: How to make UISplitViewController behave ?
  • From: "Gerriet M. Denkmann" <email@hidden>
  • Date: Mon, 12 Oct 2015 13:21:51 +0700

iPad / iPhone Master-Detail app. iOS 9.0, Xcode 7.0

Rotating the iPad to Portrait my AppDelegate will receive a UIDeviceOrientationDidChangeNotification:

12:23:01.182 -[AppDelegate iPadHasTurned:]
	and does:
	UISplitViewControllerDisplayMode newMode = PrimaryOverlay
	splitViewController.preferredDisplayMode = newMode;
	[ self performSelector: @selector(delayedSetMode:) withObject: @(newMode) afterDelay: 0 ];	//	see below

12:23:01.183 	-[AppDelegate splitViewController:willChangeToDisplayMode:] PrimaryOverlay
	good, that's what I just have told it to do.

12:23:01.196 	-[MasterViewController viewDidAppear:]
12:23:01.198 -[AppDelegate iPadHasTurned:] done

So far so good.

But now the pesky SplitViewController decides it knows best, and does:

12:23:01.199 -[AppDelegate splitViewController:willChangeToDisplayMode:] AllVisible

here my delayedSetMode will come to the rescue:
12:23:01.212 -[AppDelegate delayedSetMode:] displayMode → PrimaryOverlay
	does: 	splitViewController.preferredDisplayMode = newMode;
12:23:01.223 	-[MasterViewController viewDidAppear:]
12:23:01.224 -[AppDelegate delayedSetMode:] done

Is there a better way than this hack with delayedSetMode ?

Gerriet.


_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


  • Follow-Ups:
    • Re: How to make UISplitViewController behave ?
      • From: David Duncan <email@hidden>
  • Prev by Date: Re: NSButton with NSTexturedRoundedBezelStyle outside of NSToolbar
  • Next by Date: NSGraphicsContext currentContext() returns nil on OSX 10.11
  • Previous by thread: Re: Data not retained in document based core data app with cocoa bindings
  • Next by thread: Re: How to make UISplitViewController behave ?
  • Index(es):
    • Date
    • Thread