NSActionCell:target
Home 目次>ApplicationKit>NSActionCell

target

アクションセルのターゲットオブジェクトを返します


-(id) target


【返り値】
   idターゲットオブジェクト


【解説】

アクションセルのターゲットオブジェクト(anObject)を返します。



【例文】


#import "MyObject1.h"

@implementation MyObject1

- (
IBAction )myAction:( id )sender
{
//but1,but2 textfield
//aCell button


if ([aCell target]==but1){
[but1 setStringValue:
@" " ];
[aCell setTarget:but2];
}
else {
[but2 setStringValue:
@" " ];
[aCell setTarget:but1];

}


}

@end


(C) 2000-2007 Satoshi Oomori.
[Apple]

Google
Webwww.oomori.com
Apple_Store_40x120

[ad:Usual day in Japan]

この記事を評価してください。 

良い 

間違いがある 説明がわかりにくい 例文がわかりにくい  

Home 目次>ApplicationKit>NSActionCell
修正日2008.1.17