- 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 name of the nib file, which need not include the .nib
extension.
nibファイルの名前、それは.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
。
This method searches the language-specific project (.lproj
) directories for the specified nib file. If the file is not there, it searches the bundle's Resources
directory for a non-localized version of the file.
このメソッドは、言語特有のプロジェクト(.lproj
)ディレクトリをこの指定されたnibファイルを求めて検索します。ファイルがそこにないならば、それはバンドルのもつResources
ディレクトリをそのファイルの非ローカライズ版を求めて検索します。
- loadNibNamed:owner:options:
- loadNibNamed:owner:topLevelObjects:
+ loadNibNamed:owner:
+ loadNibFile:externalNameTable:withZone: