Apple OS X Developer API : NSScrollView class is the central coordinator for the Application Kit’s scrolling machinery

learn more… | top users | synonyms

0
votes
0answers
30 views

How to set up a NSLayoutConstraint in a NSScrollView?

I am new to NSLayoutConstraint. I want to manage the content of a NSScrollView programmatically. At the end, what I want to do is to create a subclass of NSScrollView with a method - add:(NSView ...
0
votes
2answers
73 views

How to disable the mouse hover expand effect on a NSTextView's NSScrollView scroller?

I have a NSTextView and here's the normal size of the scroller: And here's what happens when I hover the scroller of the textview: However, I don't want to have this 'expand' effect. How can I ...
0
votes
0answers
19 views

Fluid swipe and scrolling 10.7 style

I'm looking to add two finger "fluid swiping" to my app. Anyone who has used the week view in the Calendar app that comes with OSX will have seen what I'm trying to do. I have a scroll view, and I ...
2
votes
1answer
24 views

Make multiple NSScrollViews scroll at the same time

I am developing a Cocoa Application for Mac OSX. I intend to have multiple NSScrollViews and I'd like all of them to scroll at the same time if one of them is selected and scrolled. I saw for ...
0
votes
1answer
37 views

Adding row to NSTableView doesn't change its frame

I'm trying to insert a new row at the end of a NSTableView, scroll to it and start editing it. Everything seems to work fine except for the scrolling. The table view seems to scroll to the row ...
0
votes
1answer
16 views

EXC_BAD_ACCESS when trying to set NSScrollView from NSOutlineView selected row item

I have an NSOutlineView and NSScrollView in a window, i set it up so every row in the outline view has an item MCMBlock (subclass of NSViewController) : - (id)outlineView:(NSOutlineView *)outlineView ...
0
votes
1answer
69 views

NSScrollView overlapping text

I have an implementation that abstracts from NSView to display a scrolling text view. I have a long string I'm displaying on a custom class based on NSView. As soon as it starts to scroll the lines ...
0
votes
1answer
23 views

Scrollable large NSDocument on Macbook Pro 13" XGA display

I'm having all kinds of trouble understanding how NSWindows can have larger documents than the window bounds in them. Unfortunately, layout and contents prevents me from simply shrinking the document ...
0
votes
0answers
22 views

Not expanding NSScroller

The NSScroller automatically expands it's width when the user hovers over it. However, the document view has pretty little space, and this is why the scroller should not expand. How can I disable ...
1
vote
0answers
31 views

NSScrollView position is always bottom [duplicate]

I am writing an installer plugin and due to the amount of information on screen I need to use a NSScrollView. The issue is that now the default position of the scroller is at the bottom when I would ...
2
votes
0answers
104 views

NSTableView's frame inside a NSClipView/NSScrollView using auto layout

I'm trying to create a NSTableView inside a NSScrollView (the standard configuration, that is) in code, using auto layout. I can't figure out how to make this work. Here's my loadView: - ...
0
votes
0answers
65 views

NSScrollView scrolling vertical scrolls horizontal

If I scroll in my NSScrollView vertically it automatically scrolls horizontally. Why? I am using AGCenteringClipView as contentView. As you asked, here is the code of AGCenteringClipView.m #import ...
0
votes
0answers
85 views

how to implement iphoto like animation while doing drag and drop on custom listview

i had developed the custom list view which is having NSView as a cell with variable sizes to represent the video clips in the timeline. and i had implemented the drag and drop for reordering ...
0
votes
0answers
31 views

Force NSScrollView to use NSScrollerStyleOverlay independently from input device

How to force NSScrollView to use scrollers like that: independently from input device, because now if computer has wired mouse connected or app is running on laptop (macbook) it uses scrollers like ...
0
votes
0answers
34 views

How to implement a scrollable view with many scrollable subviews in it?

As part of a calandar view that I'd like to put together in OSX cocoa, I am looking for the best way to implement the following: One scrollable area contains a monthly view. This view can be scrolled ...
0
votes
0answers
89 views

NSScrollView Quantization Equivalent to scrollViewWillEndDragging:withVelocity:targetContentOffset:

When developing for iOS, UIScrollView's scrollViewWillEndDragging:withVelocity:targetContentOffset: allows for smooth quantized scrolling by modifying the CGPoint passed in for targetContentOffset. ...
3
votes
2answers
136 views

NSTableView's documentView size observing

I'm inserting NSTableView in menubar popup. I want to resize my popup's panel to fit tableview with its contents. For example, if there are no rows - tableview is hidden. With adding new rows I am ...
0
votes
0answers
32 views

NSScrollView incorrect scrolling

I have NSScrollView in witch is placed NSClipView with NSOpenGLView inside. When I try to scroll for example to the left. Its OK. But if I then want to scroll to bottom, bottom scroller jumps to ...
0
votes
0answers
19 views

Scrolling sub-class of NSScrollView through key board events?

I have a sub-class of NSScrollView(say MyScrollView) and another sub-class of NSView(say MyView) . Now i set MyView as document view of MyScrollView [myScrollView setDocumentView:myView]; MyScrollView ...
0
votes
0answers
33 views

Specific behaviour wanted when loading and displaying an image in an NSScrollView (Mac OS X)

I am very unexperienced and rather new to Objective-C and I'd like to ask a methodical question. What I want to do is: Load a user provided image to show on the screen. The user should be able to ...
0
votes
0answers
12 views

How can I store the scroll information for an NSTextView that is a part of a custom NSTableCellView?

In Interface Builder I have a view containing an scrollable view-based NSTableView which uses a custom view for its rows, and the custom view contains an NSTextView that is also scrollable. This is ...
0
votes
0answers
46 views

NSScrollView doesn't show contents

I created an NSScrollView that uses cocoa auto layout. However when you scroll the view no more visible area of the document shows up. As shown in the following example. If I were to however fix the ...
0
votes
0answers
31 views

custom Timeline control in cocoa.how i can implement?

i wanted to implement the Timeline control like in Screenflow..... my requirements: 1) on top it should show the ruler which indicate the time in seconds 2) it has two tracks(video and audio track) ...
0
votes
1answer
63 views

Scrolling on NSTextView not working

I am appending some text on my NSTextView on the screen and so I want user to be able to scroll in the view to see the entire log. But I am not able to have my text view scrolling. Below is my code. ...
0
votes
1answer
40 views

PXListView drag and drop is not doing working

i have created the NSViewController for managing the PXListView....delegate is connect with File owner... here everything is working as per the expectation..except drag and drop... while dragging it ...
0
votes
0answers
85 views

Stop NSScrollView only on specific values - Like UIScrollView paging

I am working on a Mac OS X app using SDK 10.7 as deployment target. A NSScrollView contains a horizontal list of image thumbnails. The thumbnail which is in the center of the ScrollView indicates the ...
0
votes
0answers
20 views

Get mouse location from NSScrollView

I have added my NSScrollView over the content view of my NSWindow object. Now I need to know the mouse location over the scrollview. I have tried the following. But nothing gives the correct ...
0
votes
0answers
35 views

NSScrollView generating scrollbar ghosts

Please see attached image: http://i45.tinypic.com/fu8bpz.png Has anyone every seen this kind of weird scroll bar behavior? I embedded a custom view in an NSScrollView. The scroll bars do not appear ...
0
votes
0answers
13 views

main NSScrollView contains two sub NSScrollView… my approach is correct?

I need a custom View(main NSScrollView) which contains the ThumbnailListView(NSScrollView) and waveform View(NSScrollView)...and playlet button as well as the RulerView which indicates the timeline ...
0
votes
1answer
41 views

drag and drop in PXListView is not working in the Demo App. how to fix it?

i am working with PXListView and i am testing with Demo App which came inside the PXListView...while doing the drag and drop it is not working properly... the drop is not working... i have added the ...
0
votes
1answer
75 views

Adding NSScrollView to IKImageBrowserView for scrolling

I am using Xcode 4.4 on MacOSX 10.8. I am trying to add a NSScrollView to IKImageBrowserView for vertical scrolling feature. I have added IKImageBrowserView on top of NSScrollView in IB and in the ...
0
votes
1answer
92 views

NSScrollView in NSViewController

I am making my first OSX app. My appDelegate has a window which has a contentView of NSViewController. This NSViewController has a custom view which displays on startup. I added an NSScrollView as a ...
0
votes
1answer
57 views

How can I change NSTableView in NSScrollView?

I'm building a simple data base viewer and for different tables in database I need different TableViews on my main form (with fixed column's identifier and count). So how can I programmatically change ...
0
votes
0answers
42 views

Mac OS X - NSScrollView insertion Logic

I have created an app for Mac OS x which when I run it on the macbook pro 13" only 3 quarter of the application is visible. Now I'm trying to add a NSScrollView and make the whole [_window ...
0
votes
2answers
84 views

Sort the contents of an NSScrollView, NSTableView, using Binding in ArrayController

I have an NSScrollView wich is bound with an ArrayController. I need to sort the content alphabetically. I've tried to do this with bindings but I can't find the right thing to bind. I used the ...
0
votes
0answers
146 views

NSTextView moving caret and scrolling

Now when I move caret inside NSTextView and I go to the top or bottom of window, page scroll on the middle of the window. I am trying to find the way how to change this behavior to scroll just one ...
0
votes
1answer
149 views

Adding NSViews to NSScrollview - Mac OSX

I'm trying to add multiple images of NSImageView to the NSScrollView. When I add it as a subview, the scrollview doesn't seem to scroll and when I add it as a document view I can see only one image. ...
0
votes
0answers
152 views

NSScrollView and content view resizing

I have an NSScrollView showing a large document that scrolls horizontally. I have a zoom feature that makes the document view smaller without changing its scroll position. However, app kit prevents ...
0
votes
1answer
96 views

NSScrollView, elasticity and drawing outside the bounds of the view

I am trying to recreate a bit of functionality that can be seen in Apples Calendar app (osx) with an NSScrollView. When you scroll up and down past the bounds of the view in the Calendar app it isn't ...
1
vote
1answer
113 views

NSMutableArray Initialise Only Once

I have a program that parses xml from the web service by storing items in NSMutableArray which is initialised as follows: - (id)init { self = [super init]; if (self) { items = ...
0
votes
0answers
86 views

Editing NSView GUI objects embedded inside NSScrollview from IB/Xcode

I have an NSView embedded inside an NSScrollView. The NSView height is larger then the NSScrollView since I have more GUI objects that will fit in the window without using a NSScrollView. The ...
0
votes
1answer
74 views

When I sort my NSTableView by one of the columns then scroll, the cells that I scroll to don't display properly

I have an NSTableView inside and NSScrollView in a pretty standard configuration. When I sort the table view (by clicking one of the column headers), everything that is currently visible gets ...
0
votes
1answer
83 views

How to find out whether NSScrollView is currently scrolling

How can I find out whether my NSScrollView is currently scrolling? On iOS I can use the delegate but despite of googling a lot I can't find a way to do this on the Mac. Thanks in advance!
1
vote
0answers
136 views

Positioning Stacked NSTextView subviews within Scroll View

This might be a long winded explanation but I'd rather say too much than not enough. In a nutshell I need to embed a series of stacked textViews in a single scrollView programatically and I can't get ...
2
votes
1answer
164 views

NSTableView scrolling does not work

I have an issue with tableview scrolling. I have dragged a scrollview in to the xib with the frame. And I am creating a tableview programmatically and adding this to the scrollview as follows: ...
1
vote
1answer
281 views

Cocoa Auto Layout and Scroll View

I am doing some king of Property Inspector View. I Am using Auto Layout with Custom Layout (setting the frame property explicitly) only on the outer panel. Let me explain: Each line of the inspector ...
1
vote
0answers
59 views

NSTableView and sticky vertical columns

I need help about the best way to achieve the UI described below. I have a NSTableView with two columns as show in image, the tableview has no headers by design I want to scroll vertically both ...
0
votes
1answer
144 views

NSScrollView resize automatically

I have a NSScrollView, which I would like to resize automatically. I would send a method to it's documentView to get the size of it, like in a table view I would calculate and return the required size ...
1
vote
1answer
86 views

View controllers crash with auto rotation

I have a UIScrollView that contains some controllers: imageView with the background image and others, and when I rotate the phone, it does not auto-resize controllers I have read 2 similar ...
0
votes
0answers
76 views

Live Zooming via Scrollwheel in NSScrollView

I'm looking for some elegant solution that lets me zoom the NSScrollView controlled by an NSPageController the same way I can zoom it on a trackpad with pinching, but via CMD+Mousewheel. Ideally it ...

1 2 3 4 5 6