Difference between revisions of "XIB"

From GNUstepWiki
Jump to navigation Jump to search
m (Typo)
(→‎Compatibility to Cocoa/macOS: Updated information regarding Xcode versions.)
Line 16: Line 16:
 
== Compatibility to Cocoa/macOS ==
 
== Compatibility to Cocoa/macOS ==
  
As of version 1.2.24 Gorm is able to read xib and nib files from Xcode up to version 4 (to some extend). Gorm can save nib files, but this nib files currently cannot be read by Xcode 3 and above. This means for development of cross platform xibs/nibs you need to use Xcode *below* version 5, meaning a Mac OS X version of 10.8 and below.
+
As of version 1.2.24 Gorm is able to read xib and nib files from Xcode up to file version of Xcode 4 (to some extend). Gorm can save nib files, but this nib files currently cannot be read by Xcode 3 and above. This means for development of cross platform xibs/nibs you need to use Xcode up to version 5 (Xcode 5 can save xibs in file version of Xcode 4). This means you can use a Mac OS X version up 10.10. macOS 10.11 and newer won't run Xcode 5 anymore.
  
 
== Using .nib and .gorm files in parallel ==
 
== Using .nib and .gorm files in parallel ==
  
 
You can use .nib and .gorm files in parallel to develop cross platform applications. GNUstep will load a .gorm file over a .nib file given the same name.
 
You can use .nib and .gorm files in parallel to develop cross platform applications. GNUstep will load a .gorm file over a .nib file given the same name.

Revision as of 11:25, 13 June 2019

As of MacOS 10.3 Apple moved away from the binary encoded nib files, and towards the xml encoded XIB files, for their interface definitions. As of 10.9 (Xcode 5) Apple changed the xib file format totally. That format is not supported by Gorm currently.

Xib file format

The xib file format is actually quite easy to understand, it is the responsability of the object encodeing and decoding, it to insure that it's attributes are read correctly.

Here is a commented example of a XIB file. For easy reading open it in a syntax highliting editor using XML highlighting.

To provide cross platform compatability, review the "XIB fields" section of the gnustep wiki article on the interface you intend to provide a codec for. Also be sure to read the apple article on KVC.

See Also

Compatibility to Cocoa/macOS

As of version 1.2.24 Gorm is able to read xib and nib files from Xcode up to file version of Xcode 4 (to some extend). Gorm can save nib files, but this nib files currently cannot be read by Xcode 3 and above. This means for development of cross platform xibs/nibs you need to use Xcode up to version 5 (Xcode 5 can save xibs in file version of Xcode 4). This means you can use a Mac OS X version up 10.10. macOS 10.11 and newer won't run Xcode 5 anymore.

Using .nib and .gorm files in parallel

You can use .nib and .gorm files in parallel to develop cross platform applications. GNUstep will load a .gorm file over a .nib file given the same name.