I have swift classes mixed in with my Objective-C code. With Swift 2.3, everything was fine and worked as expected.
I recently converted to Swift 3, and it updates several API calls because of all the renaming that occurred for Swift 3. That's fine; I get that.
But what's not fine is that Swift 3 seems to have renamed a method in one of my Objective-C classes. I own the Objective-C class and I called the method what I wanted: readDeliveryInfoItems
. But now, after converting to Swift 3, I can't call .readDeliveryInfoItems()
anymore in my Swift class. It's telling me it has been renamed to .readItems()
.
That makes no sense. And the Objective-C class still calls the method readDeliveryInfoItems
, so there is something under the covers going on here.
I have tried renaming the Objective-C readDeliveryInfoItems
method to readDeliveryInfo
, building (Swift fails because it says that the readInfo()
method doesn't exist, which is good), and then renaming the method back to readDeliveryInfoItems
. However, when I build after this, Swift goes back to thinking the method is called readInfo()
. I was hoping this would trick Xcode into refreshing the Swift bridging and renaming the method back to the correct name readDeliveryInfoItems()
, but it did not.
How can I fix this?
UPDATE TO ADD MORE INFO
The interface of my Objective-C class has this function declaration:
- (nullable NSArray<XMPPDeliveryInfoItem *> *)readDeliveryInfoItems;
But in the Generated Interface (see MartinR's comment below) for that class, the function declaration is this instead:
open func readItems() -> [XMPPDeliveryInfoItem]?
There are other functions in that class that are similar to the readDeliveryInfoItems
function, such as this one:
- (nullable NSArray<XMPPDeliveryInfoItem *> *)sentDeliveryInfoItems;
And they look correct in the Generated Interface:
open func sentDeliveryInfoItems() -> [XMPPDeliveryInfoItem]?
So I can't figure out why I'm having this problem with only the one function.
See Question&Answers more detail:os