Posts match “ swift ” tag:

Using Objective-C Classes in Swift

  • Add Objective-C files
  • Create MyApp-Bridging-Header.h
    #import "MyWebViewController.h"
    #import "MyModalWebViewController.h"
    
  • Build Settings -> Objective-C Bridging Header
    /Users/isobar/Desktop/MyApp/MyApp-Bridging-Header.h
    
    swift 這邊不需再 import 可以直接拿來用。

Reference