Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

view swift interface for Objc file

I am working in a mixed ObjC Swift project. I am currently overriding functions that where written in ObjC in a swift subclass. I'm wondering if there is a quick way to view the auto generated Swift header files for the objC file so that I can check the syntax of functions after they have been converted to swift.

like image 892
TMin Avatar asked Apr 18 '17 03:04

TMin


1 Answers

I'm wondering if there is a quick way to view the auto generated Swift header files for the objC

Switch to the Generated Interface in the first menu of the jump bar.

enter image description here

Example: before:

enter image description here

after:

enter image description here

like image 115
matt Avatar answered Sep 28 '22 16:09

matt