I have created a swift expression macro which returns image as below.
return "Image(systemName: \(literal: literalSegment.description))"
This macro is working fine with the SwiftUI
projects. I would like to use same macro for storyboard (UIKit)
projects.
Please suggest how to achieve it. Thanks in advance.