Skip navigation.
 
mlRe: NSTableView limitations?
FROM : Alexey Zakhlestine
DATE : Wed Dec 22 22:14:23 2004

David Christensen wrote:

> You may be able to get NSScroller to treat its coordinates as doubles or
> integers, in which case you could have a view into a partition of the
> total set, but  I pretty much moved on to something else and never got
> it working.


actually, the problem seems to be related to [NSScrollView contentSize]
method, which returns NSSize.

typedef struct _NSSize {
    float width;
    float height;
} NSSize;

which leads to conclusion, that such limitation must be quite common to
the whole Cocoa GUI system :-(

Related mailsAuthorDate
mlNSTableView limitations? Alexey Zakhlestine Dec 22, 20:12
mlRe: NSTableView limitations? Scott Stevenson Dec 22, 20:22
mlRe: NSTableView limitations? Alexey Zakhlestine Dec 22, 20:36
mlRe: NSTableView limitations? David Christensen Dec 22, 20:36
mlRe: NSTableView limitations? Alexey Zakhlestine Dec 22, 21:09
mlRe: NSTableView limitations? Alexey Zakhlestine Dec 22, 22:14
mlRe: NSTableView limitations? Markus Hitter Dec 23, 00:21
mlRe: NSTableView limitations? Timothy J.Wood Dec 23, 02:24