For an Iphone project, I have created a custom UIButton subclass [.m/.h] and it is working fine with that project.
What I want to do is to compile the .m file and convert it into a library like we does in windows where a class library is compiled into DLL and then that dll is sharable by multiple programs.
How can I achieve the same thing in objective c for I phone program so that I do not need to add the .m file for the subclass each time when I work on any new project instead just add reference like framework library
What I want to do is to compile the .m file and convert it into a library like we does in windows where a class library is compiled into DLL and then that dll is sharable by multiple programs.
How can I achieve the same thing in objective c for I phone program so that I do not need to add the .m file for the subclass each time when I work on any new project instead just add reference like framework library