I am writing a swift project mixing with others' project writing in Objective-C. I have already used a bridging header file. And it works.
I am now using some function from others' project. Before I add the functions, which have been declared in .h file. It works:
However, when I add the function:
func SACalendar(calendar: SACalendar!, didSelectDate day: Int32, month: Int32, year: Int32) {
}
Errors occur:
Use of undeclared type 'SACalendar'!