objc-bridging-header Questions
2
Solved
Given that there is an ObjC compatible enum written in Swift:
// from MessageType.swift
@objc enum MessageType: Int {
case one
case two
}
and an ObjC class with a property of type MessageType ...
Ebeneser asked 6/12, 2018 at 10:39
2
Solved
After merging master to my working branch I got compiler error on the line, which wasn't be changed. The error looks like
id test;
[test count];
Multiple methods named 'count' found with mism...
Carley asked 5/10, 2018 at 9:37
3
Solved
I am trying to extend a class written in Obj-C and include an extension written in Swift that makes it conform to the UIDropInteractionDelegate, like so:
@available(iOS 11.0, *)
extension NoteEdit...
Weidman asked 7/7, 2017 at 15:22
1
© 2022 - 2024 — McMap. All rights reserved.