macOS/iOS API解説

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

目次

setTakesTitleFromPreviousColumn:

コラムのタイトルが前のコラムの選択されたセルの文字列であるかをセットします
-(void)setTakesTitleFromPreviousColumn:(BOOL)flag:

解説

コラムのタイトルが前のコラムの選択されたセルの文字列であるかをセットします。

返り値

( void )

なし

引数

( BOOL )flag

YES/NO

フレームワーク

ApplicationKit

クラス

NSBrowser

Instance Methods

使用可能

10.0

参照

- takesTitleFromPreviousColumn

例文

#import "butAction.h"

@implementation butAction

- (IBAction)myAction:(id)sender
{
[myOutlet setTakesTitleFromPreviousColumn:NO];

[myOutlet setTitle:@"New Title" ofColumn:1];

 }

@end