2012-11-29 78 views
1

當我們看到xib文件的源代碼時,有一些鍵值和關鍵字。任何人都知道這些關鍵字的含義,以及我們如何知道哪個關鍵字我們正在使用哪個地方。我知道邏輯裏面發生了什麼,但沒有足夠的關鍵字知識(在xib源代碼中使用)。如果有任何教程或文檔可以在這裏發佈,它會幫助我。Iphone Xib內部結構

感謝

+1

是什麼原因? –

+0

如果設計者沒有imac,他可以編寫這個xml,然後我們可以將該代碼集成到我們的應用程序中。 – Ron

+0

我認爲這是一個非常糟糕的主意。如果你不能使用IB,那麼你應該把所有的東西寫在代碼中。試圖用XML創建IB文件可能會導致很多錯誤。 – rdelmar

回答

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.