advanced code snippet search
Netzach on 02/16/09
fade animation Objective-c
02/16/09 12:47pm
5 people have marked this snippet as a favorite
Netzachemosemanshimdhwpellisgospaz
- (void)fadeInWindow:(NSWindow*)window{ float alpha = 0.0; [window setAlphaValue:alpha]; [window makeKeyAndOrderFront:self]; for (int x = 0; x < 10; x++) { alpha += 0.1; [window setAlphaValue:alpha]; [NSThread sleepForTimeInterval:0.020]; }}
Report this snippet Tweet
Comment:
You need to login to post a comment.