- loadNibNamed:owner:options:
- loadNibNamed:owner:topLevelObjects:
+ loadNibNamed:owner:
- loadNibFile:externalNameTable:withZone:
Deprecated 非推奨
Use the load
method instead.
load
メソッドを代わりに使ってください。
Availability 有効性
Technology
+ (BOOL)loadNibFile:(NSString
*)fileName
externalNameTable:(NSDictionary
*)context
withZone:(NSZone
*)zone;
fileName
The location of the nib file specified as an absolute path in the file system. ファイルシステムにおける絶対パスとして指定されるnibファイルの場所。
context
A name table whose keys identify objects associated with your program or the nib file. The newly unarchived objects from the nib file use this table to connect to objects in your program.
それのキーがあなたのプログラムまたはnibファイルと結び付けられるオブジェクトを識別するある名前テーブル。nibファイルから新しくアンアーカイブされたオブジェクトは、このテーブルを使ってあなたのプログラムの中のオブジェクトと接続します。
For example, the nib file uses the object associated with the NSNib
constant as the nib file's owning object. If you associate an empty NSMutable
object with the NSNib
constant, on output, the array contains the top level objects from the nib file. For descriptions of these constants, see NSNib
.
あなたが空のNSMutable
オブジェクトをNSNib
定数と結びつけるならば、出力では、配列はnibファイルからトップレベルオブジェクトを含みます。これらの定数の記述として、NSNib
を見てください。
zone
The memory zone in which to allocate the nib file objects. それにおいてnibファイルオブジェクトをアロケートすることになるメモリゾーン。
YES
if the nib file was loaded successfully; otherwise, NO
.
YES
、もしnibファイルがうまくロードされたならば;そうでなければNO
。
- loadNibNamed:owner:options:
- loadNibNamed:owner:topLevelObjects:
+ loadNibNamed:owner:
- loadNibFile:externalNameTable:withZone: