• 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
Re: How to get a scroll view to recognize overflow on a custom view?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to get a scroll view to recognize overflow on a custom view?


  • Subject: Re: How to get a scroll view to recognize overflow on a custom view?
  • From: Ken Tozier <email@hidden>
  • Date: Mon, 23 Mar 2009 01:17:24 -0400

I think my issue is slightly different. The scroll bars never appear, no matter how much overflow there might be. I generally don't have a problem using table views as they seem to have some built-in mechanism for notifying the scroll view that they are deeper than it is. I'm trying to make my custom view do what table views are doing. I was hoping to do it all in IB but it's looking like I'll have to do the notifications programatically.


On Mar 23, 2009, at 1:06 AM, Ron Fleckner wrote:


I may be wrong, but I came across similar scrollview behaviour in Tiger. IIRC, I asked about it here on cocoa-dev and got back that it was a known bug. As I say, not sure if this is still the case.


My workaround was to uncheck the 'has scroll bar' in IB, then, in my case:

	id scrollview = [[tableView superview] superview];
	[scrollview setHasVerticalScroller:YES];
	[scrollview display];

The behaviour I was getting in my table view was that if you/the user selected a visible row, then arrow keyed down, it would continue past the bottom of the window but no (vertical) scroll bar would show and you couldn't see what was actually selected.

HTH,

Ron



_______________________________________________

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 get a scroll view to recognize overflow on a custom view?
      • From: Ron Fleckner <email@hidden>
References: 
 >How to get a scroll view to recognize overflow on a custom view? (From: Ken Tozier <email@hidden>)
 >Re: How to get a scroll view to recognize overflow on a custom view? (From: Ron Fleckner <email@hidden>)

  • Prev by Date: Re: How to get a scroll view to recognize overflow on a custom view?
  • Next by Date: Re: How to get a scroll view to recognize overflow on a custom view?
  • Previous by thread: Re: How to get a scroll view to recognize overflow on a custom view?
  • Next by thread: Re: How to get a scroll view to recognize overflow on a custom view?
  • Index(es):
    • Date
    • Thread