macOS/iOS API解説

iOS , Mac アプリケーション開発のために使われる主要フレームワークの日本語情報です。2010年代に書かれた内容です。今後更新はありません。

目次

initWithFrame:

INDEX>AppKit>NSControl

コントロールを初期化して返します

Objective-C

- (instancetype)initWithFrame:(NSRect)frameRect

Swift

init(frame frameRect: NSRect)

解説

コントロール(NSControl)を初期化して返します。

返り値

Objective-C

instancetype

Swift

NSControl

引数

Objective-C

(NSRect)frameRect

Swift

frameRect: NSRect


範囲

フレームワーク

ApplicationKit

クラス

NSControl

使用可能

10.0

更新時のバージョン

OS X 10.10.3
Swift1.2

参照

例文

Objective-C

#import "scriptSend.h"

@implementation scriptSend

- (IBAction)myAction:(id)sender
{
NSButton *but;
but = [sender initWithFrame : NSMakeRect(10,10,100,100)];
[[but window] display];
}

@end

Swift

    //NSControl initWithFrame:
    //Swift1.2
    func buttonAction001(sender: AnyObject?){
        var theWindow : NSWindow = (sender as! NSButton).window!
        NSLog("!!!")
    }
    @IBAction func method001(sender: AnyObject) {
        var aWindow : NSWindow
        = NSWindow(contentRect: NSMakeRect(0.0, 0.0, 300.0, 200.0),
            styleMask: NSTitledWindowMask
                | NSClosableWindowMask
                | NSMiniaturizableWindowMask
                | NSResizableWindowMask,
            backing: .Buffered,
            defer: false,
            screen: NSScreen.mainScreen())
        windowArray.addObject(aWindow) //ウインドウを保持するための配列に追加。アプリ終了時に配列は破棄
        aWindow.center()//ウインドウをスクリーンの中心に
        aWindow.title = "ウインドウタイトル"//タイトル設定
        //
        var theButton : NSButton = NSButton(frame: NSMakeRect(50.0, 50.0, 100.0, 30.0))
        theButton.title = "Action"
        theButton.bezelStyle = NSBezelStyle.RoundedBezelStyle
        theButton.action = Selector("buttonAction001:")
        theButton.target = self
        theButton.setButtonType(.MomentaryLightButton)
        //.SwitchButton
        //.PushOnPushOffButton
        aWindow.contentView.addSubview(theButton)
        
        aWindow.orderFront(self)//前面に
        aWindow.makeKeyAndOrderFront(self)//表示
    }