The twitter app has a float window when you click the contextual menu "Tweet",is it a NSPanel? How to?

link|improve this question

64% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Take a look at NSWindow's setLevel: method:

Each level in the list groups windows within it in front of those in all preceding groups. Floating windows, for example, appear in front of all normal-level windows. When a window enters a new level, it’s ordered in front of all its peers in that level.

-- from NSWindow's setLevel: reference.

You may also find Matt Gemmell's MAAttachedWindow project helpful:

alt text

link|improve this answer
Thanks,very helpful. – NeXT5tep Jan 20 '11 at 13:33
feedback

This can be achieved with an NSWindow subclass. Check Matt Gemmell's custom MAAttachedWindow class here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.