Tagged Questions
0
votes
2answers
245 views
Animating a NSStatusItem
I have a custom view in an NSStatusItem object.
This view displays icons. It's also able to show a progress, but you have to call [self.statusitemview setProgressValue:theValue];
I have a set of ...
0
votes
1answer
70 views
Why fadeout effect for view did't work?
I add to the scrollview my view with content as a documenView and use this code to fadeout my documentView:
- (IBAction)deleteAllRules:(id)sender {
NSViewAnimation * ...
0
votes
2answers
1k views
Animations for NSView
I have been making apps for iOS and have started making ones for Mac OS X lately. I am trying to do some animations on NSView.
What I want to do is bounce the scale an NSView so it shrinks to 70% and ...
1
vote
1answer
349 views
How can I animate a NSImage easily?
I created a NSView within a NSImage wich I want to animate by sending start and stop notifications via NSNotificationCenter.
Which way do I have to take to realise this?
The code I have is:
...
1
vote
2answers
539 views
Draw waveform in NSView
I need to draw a waveform in an NSView. (I have all the samples in an array). The drawing must be efficient and really fast without clipping, flickering, etc, it must be smooth. The waveform will be ...
0
votes
1answer
523 views
NSView resizing shaky
I have an MAAttachedWindow (subclass of NSWindow), which contains a blank view (contentView), and some arbitrary subview (right now an NSImageView).
On load, I'm attempting to resize the window by ...
0
votes
2answers
283 views
NSView change type of property animation
I have an NSButton that I'd like to animate when I call [button setHidden: NO]; However, I don't want the default fade animation, I'd like a slide-from-left animation instead.
I'm sure it's not that ...
1
vote
1answer
759 views
Animated rotation of NSView contents
I'm trying to rotate the contents of an NSView (NSButton) in-place (I.e. from the center. I want to convert - into |). This can be done with setFrameCenterRotation: … However, I'm trying to animate ...
1
vote
1answer
712 views
Animating sibling NSViews
Background & Goal
I have a window and three sepearate views in a nib file in IB. The three views are used for the three 'parts' of the program: the first were the user drops a file, the second ...
1
vote
0answers
467 views
Cocoa NSView animation
I have a view that is being shown within a larger view and will always remain in the same place. When some user input is provided, a second view will appear below the first one. want this to be a ...
2
votes
2answers
780 views
Swapping NSViews using a push transition
I've been trying to figure this out for a while but I can't seem to get it. How would I swap two NSViews using a push transition (like what UINavigationController does on iOS)? What I've tried so far:
...
1
vote
1answer
824 views
CATransition replaceSubView:with…is animating all views
how can I make it so all of my view's subviews aren't animated here and only the currentPage's representedView and the newPage's represented view's?
CATransition *transition = [CATransition ...
2
votes
2answers
1k views
Fading in one view for another
Here's my code:
- (IBAction)showTaskDetailView:(id)sender {
[window setContentView:viewTaskView];
}
How would I fade out the current view and fade in the detail view?