开发者

Where can I find the specification for xib files?

We have developed a mobile app development toolkit which currently allows graphical designing of phone UI and generating applications for android mobiles. Now I am attempting to generate iPhone code 开发者_如何转开发out of the same specifications. The objective-c code is not a problem, but the XIB format used for UI design is hard to decrypt. Is there a specification document for the XIB file format? Any reference would be helpful. Alternately, is it possible to create the UI layout programmatically?


Yes it is possible to create UI Layout programmatically.

You have to set the frame and assign that frame to that User Interface elements.

And then after you have to add that element in to your view. It is so simple.


It is definitely possible to create the UI programmatically.

To do this, derive a class from UIViewand create your subviews (UILabel and other components in your UI) in its constructor.
To show the subview, set its Frame property and add it by calling the addSubview method.

I think this link may be of use to you: View Programming Guide for iOS.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜