macOS/iOS API解説

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

目次

displayIfNeededInRect:

必要なら指定した範囲のViewを再描画します
-(void)displayIfNeededInRect:(NSRect)aRect:

解説

必要なら指定した範囲のViewを再描画します。

返り値

( void )

なし

引数

( NSRect )aRect

描画する範囲

フレームワーク

ApplicationKit

クラス

NSView

Instance Methods

使用可能

10.0

参照

例文

    [info displayIfNeededInRect:NSMakeRect(0,0,100,100)];