-2

I would like to be able to use this project in my own: https://github.com/matibot/MBCircularProgressBar

But the problem is that the language used in there is objective-c and I only know swift. Is there a way to make it work in my project?

D. Finna
  • 467
  • 2
  • 7
  • 19
  • You should search on google about "bridging header swift objective-c". You will find something like this: http://www.learnswiftonline.com/getting-started/adding-swift-bridging-header/ – Duyen-Hoa Oct 21 '16 at 14:34

1 Answers1

0

You can bridge Objective-C to Swift with a bridging header. Rather than explaining in a post, this document explains the whole process. https://developer.apple.com/library/content/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html

werm098
  • 159
  • 1
  • 11