Objective-C

How To Fix Xcode Not Automatically Creating Bridging Header File Issue

If you want to import objective-c class’s .h and .m file into the swift project, Xcode will create an Objective-C Bridging Header file in the swift project automatically. But sometimes you will find it does not create the objective-c bridging header file, so you need to create and configure it manually. This article will tell …

How To Fix Xcode Not Automatically Creating Bridging Header File Issue Read More »

How To Call Objective C Code From Swift Project

When you develop an iOS app use swift, if you have some older function wrote by objective-c language, you can use the Objective-C bridging header file to import your objective-c header files to the swift project. And then you can invoke the objective-c class function from your app’s swift code. This article will tell you …

How To Call Objective C Code From Swift Project Read More »