Apple の iOS Developer Library からダウンロードした xib プロジェクトを、さらに使用するために純粋なコードに変換しようとしましたが、うまくいきませんでした。
このような変換を行う際に注意すべきことは何か、iOS 開発のスキル向上に役立つのではないかと考えています。
Xib ファイルを純粋なコード部分に変換することはそれほど大きな作業ではありません。Interface builder を介して作成されたアイテムをコード部分で慎重に置き換える必要があるだけです。このようなプロジェクトを変換するときは、次の順序に従うことができます:-
1) Display the elements made via IB with your code.
2) Make sure the delegates and datasources to be connected via code if they were connected via IB.
3) Check for the IBActions, if any to be replaced.
4) Lastly, if you are not using ARC or the Project that is being converted not using ARC then the dealloc part or viewDidUnload method, where we generally make the objects nil and release.
それがあなたを助けることを願っています:)