1

xibファイルのソースコードを見ると、いくつかの重要な値とキーワードがあります。誰もがこれらのキーワードの意味と、どのキーワードがどの場所で使用されているかをどのように知っているかを知っています。内部で何が起こるかについてのロジックは知っていますが、キーワード(xibソースコードで使用されているもの)について十分な知識がありません。チュートリアルやドキュメントが利用できる場合は、ここに投稿してください。

ありがとう

4

1 に答える 1

1
Xib source code based on parents, child and sibling concept, it means it fully works on tree concept. 

<string key="className">RSViewController</string>
<string key="superclassName">UIViewController</string>
<object class="IBClassDescriptionSource" key="sourceIdentifier">
<string key="majorKey">IBProjectSource</string>
<string key="minorKey">./Classes/RSViewController.h</string>

Class name :- Your current class name.
SuperclassName :- In which class your current class inherited.

Like that all keywords have its own value.
于 2013-10-30T07:23:00.217 に答える