Created
March 23, 2011 20:59
-
-
Save gorenje/883961 to your computer and use it in GitHub Desktop.
tooltips for toolbaritems
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation _CPToolbarItemView (MouseEntered) | |
- (void)mouseEntered:(CPEvent)anEvent | |
{ | |
// TODO add code to check whether super responses to this method. | |
if ( [_toolbarItem toolTip] ) { | |
[TNToolTip toolTipWithString:[_toolbarItem toolTip] | |
forView:([_labelField stringValue] === @"" ? _imageView : | |
_labelField) | |
closeAfter:2.5]; | |
} | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment