私はCocoaアプリケーションでは、私のインターフェイスを設定するための次のコードを持っている:MacのApp Storeのアプリケーションが行うようCocoaアプリケーションのタイトルバーの高さを上げるにはどうすればよいですか?
#import <Foundation/Foundation.h>
@interface uiview : NSObject {
IBOutlet NSWindow *mainWindow;
IBOutlet NSView *accessoryView;}
// Methods
- (void)composeInterface;
-(IBAction)button : (id)sender;
@end
#import "uiview.h"
@implementation uiview
- (void)awakeFromNib
{
[self composeInterface];
[mainWindow setTitleWithRepresentedFilename:@"/Users/parag/Documents/UIview"];
}
- (void)composeInterface
{
NSView *themeFrame = [[mainWindow contentView] superview];
NSRect c = [themeFrame frame];
NSRect aV = [accessoryView frame];
NSRect newFrame = NSMakeRect(
c.size.width - aV.size.width, // x position
c.size.height - aV.size.height, // y position NSPoint
aV.size.width, // width
aV.size.height); // height //NSSize
[accessoryView setFrame:newFrame];
[themeFrame addSubview:accessoryView];
}
は、どのように私は、ウィンドウのタイトルバー領域の高さを上げることができますか?
ナビゲーションバーですか? – Legolas
コメントとしては、a)はCocoaの大文字のスタイルに従わず、b)UIKitのクラスの名前であるため、あなたのクラスには「uiview」という名前を付けたくないかもしれません。 。 –
ありがとうございます@BradLarson –