If you're new to programming in iOS and are coming from a .Net background (like myself), you may be wondering where all the dlls are. Well, instead of dlls the platform works in terms Frameworks, which are basically folders thats contain public header files and a binary. Unfortunately, XCode doesn't natively support the creation of your own Frameworks. As a control developer, this is kind of a big deal, b/c without frameworks, we have to fall back on creating a static library file. The problem...(read more)
↧