"Unknown class MTMCheckbox in Interface Builder file"
The 3 involved class where:
MTMMatchDetailViewController (ObjC)
MTMAvailabilityCell (Swift file + XIB)
MTMCheckbox (Swift file)
The error comes from MTMAvailabilityCell XIB.
This was the class definition for my MTMCheckbox.swift:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@objc public class MTMCheckbox: M13Checkbox { | |
} |
Thanks to this StackOverflow thread and the user1760527's answer I was able to fix adding (MTMCheckbox) after the notation @obj:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@objc(MTMCheckbox) public class MTMCheckbox: M13Checkbox { | |
} |
I hope this can help someone else having the same issue.
Nessun commento:
Posta un commento