Hi David and Kyle,

Thanks so much for the insight and pointers.

I was manually calling setNeedsDisplay() when toggling the navigation bar 
hidden, and now I can remove that and just set the contentMode to .Redraw.  
That’s great.

And setting the automaticallyAdjustsScrollViewInsets to false helps, and I can 
now go back to drawing the content under the top bars and the content stays put 
while the bar animates up and down.

Thanks again guys for your expert insight.


-Stevo Brock
 Owner
 Sunset Magicwerks, LLC
 www.sunsetmagicwerks.com
@SunsetMagicwrks
 818-478-9758

> On Oct 25, 2015, at 10:09 AM, David Duncan <david.dun...@apple.com> wrote:
> 
> 
>> On Oct 24, 2015, at 10:23 AM, Kyle Sluder <k...@ksluder.com> wrote:
>> 
>> On Tue, Oct 20, 2015, at 11:21 AM, Stevo Brock wrote:
>>> The trick is, if in the storyboard, on the UIPageController, I set the
>>> “Under Top Bars” to yes, my custom view draws full screen.  But when I
>>> toggle the navigationBarHidden, the custom view and its superview scroll
>>> up and down the size of the navigation bar.
>> 
>> This sounds like it might be a bug in automatic content inset
>> adjustment. Please file a Radar with a sample project.
>> 
>> In the meantime, you can try turning off
>> automaticallyAdjustsScrollViewInsets on your view controller and
>> managing layout manually (relative to the view controller's
>> topLayoutGuide) in an override of -viewDidLayoutSubviews.
>> 
>>> 
>>> 
>>> Alternatively, if in the storyboard, on the UIPageController, I set the
>>> “Under Top Bars” to no, my custom view draws in the screen space under
>>> the navigation bar.  When I toggle the navigationBarHidden, the view
>>> stretches to fill the full height of the screen, but I never get a redraw
>>> call, so the drawing is stretched.
>> 
>> This is expected. Views that need to redraw when they change size should
>> override -setBounds: to call [self setNeedsDisplay].
> 
> If you need to redraw on bounds change, change the contentMode to Redraw. 
> Overriding -setBounds: is insufficient and unnecessary.
> 
>> 
>> --Kyle Sluder
>> 
>> _______________________________________________
>> 
>> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
>> 
>> 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:
>> https://lists.apple.com/mailman/options/cocoa-dev/david.duncan%40apple.com
>> 
>> This email sent to david.dun...@apple.com
> 
> --
> David Duncan
> 
> 
> _______________________________________________
> 
> Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
> 
> 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:
> https://lists.apple.com/mailman/options/cocoa-dev/devlists%40sunsetmagicwerks.com
> 
> This email sent to devli...@sunsetmagicwerks.com


_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

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:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to