Objective-C 协议方法在 Swift 中不可见
Objective-C protocol method invisible in Swift
我目前正在 Swift class 我的 ObjC
项目中。
我遇到的问题如下:
我在 ClassA.h 中声明了此协议:
@protocol MyProtocol <NSObject>
- (void)complexMethodWithArg1:(id)arg1 arg2:(id)arg2 arg3:(id)arg3;
- (Folder *)currentDestinationFolder;
- (Flow)currentFlow;
@end
非常标准的东西。
现在我的目标是有一个 swift class 和一个 属性 是实现这个协议的对象。
所以很自然地,我将 class 添加到 swift 桥接头:
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import "ClassA.h"
并在 ClassB 下的 swift 文件中声明我的 属性,这是一个 UIViewController
实现另一个协议
class ClassB : UIViewController, AnotherProtocol {
var delegate:MyProtocol?
}
这里的问题是:我想在 viewDidLoad
中调用一堆委托方法。它适用于所有这些方法,除了一种方法,如果手动输入,该方法不会自动完成并导致编译错误:
override func viewDidLoad() {
self.delegate?.currentDestinationFolder() // works great, no problem
self.delegate?.currentFlow() // works great, no problem
self.delegate?.complexMethodWithArg1(arg1: arg1, arg2: arg2, arg3: arg3) // PROBLEM : no autocompletion, error if entered manually !
super.viewDidLoad()
}
我不知道发生了什么,它与可选或必需的协议方法无关,与我的委托 属性 是可选的(尝试展开)这一事实无关。
有人遇到过类似的问题吗?似乎是某种错误?
我继续尝试在空项目上重现该问题。
MyProtocol.h(从您的问题和评论中获取声明)
@import Foundation;
@import UIKit;
@class CAPNavigationBar;
@protocol MyProtocol <NSObject>
- (void)setupNavigationItemInNavigationBar:(CAPNavigationBar *)navigationBar
navigationItem:(UINavigationItem *)navigationItem
inViewController:(UIViewController *)viewController;
@end
CAPNavigationBar.h(只是一个模拟)
@import Foundation;
@interface CAPNavigationBar : NSObject
@end
ViewController.swift
import UIKit
class ViewController: UIViewController {
var delegate: MyProtocol?
override func viewDidLoad() {
super.viewDidLoad()
let capNavigationBar = CAPNavigationBar()
self.delegate?.setupNavigationItemInNavigationBar(capNavigationBar, navigationItem: nil, inViewController: self)
}
}
桥接头
#import "MyProtocol.h"
#import "CAPNavigationBar.h"
总结
一切正常。
您可能某处有一个简单的拼写错误,或者您没有将所有类型正确导入 Swift。尤其要确保您不只将类型作为前向声明导入。
我目前正在 Swift class 我的 ObjC
项目中。
我遇到的问题如下:
我在 ClassA.h 中声明了此协议:
@protocol MyProtocol <NSObject>
- (void)complexMethodWithArg1:(id)arg1 arg2:(id)arg2 arg3:(id)arg3;
- (Folder *)currentDestinationFolder;
- (Flow)currentFlow;
@end
非常标准的东西。
现在我的目标是有一个 swift class 和一个 属性 是实现这个协议的对象。 所以很自然地,我将 class 添加到 swift 桥接头:
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
#import "ClassA.h"
并在 ClassB 下的 swift 文件中声明我的 属性,这是一个 UIViewController
实现另一个协议
class ClassB : UIViewController, AnotherProtocol {
var delegate:MyProtocol?
}
这里的问题是:我想在 viewDidLoad
中调用一堆委托方法。它适用于所有这些方法,除了一种方法,如果手动输入,该方法不会自动完成并导致编译错误:
override func viewDidLoad() {
self.delegate?.currentDestinationFolder() // works great, no problem
self.delegate?.currentFlow() // works great, no problem
self.delegate?.complexMethodWithArg1(arg1: arg1, arg2: arg2, arg3: arg3) // PROBLEM : no autocompletion, error if entered manually !
super.viewDidLoad()
}
我不知道发生了什么,它与可选或必需的协议方法无关,与我的委托 属性 是可选的(尝试展开)这一事实无关。
有人遇到过类似的问题吗?似乎是某种错误?
我继续尝试在空项目上重现该问题。
MyProtocol.h(从您的问题和评论中获取声明)
@import Foundation;
@import UIKit;
@class CAPNavigationBar;
@protocol MyProtocol <NSObject>
- (void)setupNavigationItemInNavigationBar:(CAPNavigationBar *)navigationBar
navigationItem:(UINavigationItem *)navigationItem
inViewController:(UIViewController *)viewController;
@end
CAPNavigationBar.h(只是一个模拟)
@import Foundation;
@interface CAPNavigationBar : NSObject
@end
ViewController.swift
import UIKit
class ViewController: UIViewController {
var delegate: MyProtocol?
override func viewDidLoad() {
super.viewDidLoad()
let capNavigationBar = CAPNavigationBar()
self.delegate?.setupNavigationItemInNavigationBar(capNavigationBar, navigationItem: nil, inViewController: self)
}
}
桥接头
#import "MyProtocol.h"
#import "CAPNavigationBar.h"
总结
一切正常。
您可能某处有一个简单的拼写错误,或者您没有将所有类型正确导入 Swift。尤其要确保您不只将类型作为前向声明导入。