Possible Duplicate:
Using -setImage on NSButton
I created a button using following code .
NSView *superview = [_window contentView];
NSRect frame = NSMakeRect(10, 10, 200, 100);
button = [[NSButton alloc] initWithFrame:frame];
[button setTitle:@"Click me!"];
so how can I set a image to this button ?