コントロールのオブジェクトを返します
@property(copy) id objectValue
@NSCopying var objectValue: AnyObject?
更新時のバージョン
OS X 10.10.3
Swift1.2
解説
コントロールのオブジェクトを返します。
複数のセルを持つコントロール(NSMatrixなど)なら選択されたセルの値を返します。
返り値
( id )
オブジェクト
フレームワーク
ApplicationKit
クラス
NSControl
使用可能
10.0
参照
例文
#import "scriptSend.h" @implementation scriptSend - (IBAction)myAction:(id)sender { [myOutlet setStringValue : @"string"]; [display setStringValue : [myOutlet objectValue]]; } @end
//NSControl objectValue //Swift1.0 var aButton008 : NSButton? var aTextField008 : NSTextField? func buttonAction008(sender: AnyObject?){ var theWindow : NSWindow = (sender as! NSButton).window! NSLog("%@", aTextField008!.description) //-><NSTextField: 0x600000184780> } @IBAction func method008(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 = "ウインドウタイトル"//タイトル設定 //NSButton var theButton : NSButton = NSButton(frame: NSMakeRect(50.0, 50.0, 100.0, 30.0)) theButton.title = "Action" theButton.bezelStyle = NSBezelStyle.RoundedBezelStyle theButton.action = Selector("buttonAction008:") theButton.target = self theButton.setButtonType(.MomentaryLightButton) aWindow.contentView.addSubview(theButton) //NSTextField var theTextField : NSTextField = NSTextField(frame: NSMakeRect(50.0, 150.0, 100.0, 30.0)) aWindow.contentView.addSubview(theTextField) //実験ウインドウにUIパーツを渡す self.aButton008 = theButton //ボタン self.aTextField008 = theTextField //テキストフィールド //ウインドウの表示 aWindow.orderFront(self)//前面に aWindow.makeKeyAndOrderFront(self)//表示 }