提问人:Kepa Santos 提问时间:1/13/2021 更新时间:1/13/2021 访问量:1107
无法将“NSArray.Element”类型的值转换为预期参数
Cannot convert value of type 'NSArray.Element' to expected argument
问:
我有一个用 Objective C 编写的静态库,其中我有一个协议来获取区域结果监控的回调。
@protocol ScanBeaconsDelegate <NSObject>
@required
- (void) onBeaconDetected: (NSMutableArray <Beacon*> *) detectedBeacons
@end
然后,当我想使用 de delegate 方法时,我使用如下:
- (void) onBeaconDetected: (NSMutableArray <Beacon*> *) detectedBeacons
{
for(Beacon *b in detectedBeacons)
{
//do staff
}
}
现在,我在 Swift 中开发了一个项目,我想以同样的方式使用该协议,但 xCode 像这样遍历委托方法:
func onBeaconDetected(_ detectedBeacons: NSMutableArray!) {
for beacon: Beacon in detectedBeacons
{
//do staff
}
}
我不知道如何将检测到的信标数组转换为信标对象,我得到一个“无法将序列元素类型'NSArray.Element'(又名'Any')转换为预期类型'Beacon'”。
我非常迷茫,因为这是我第一次接触 swift。有什么办法可以解决这个问题吗?
答:
1赞
Shehata Gamal
1/13/2021
#1
你可以试试
func onBeaconDetected(_ detectedBeacons: NSMutableArray!) {
for beacon in (detectedBeacons as! [Beacon]) {
//do staff
}
}
评论
1赞
Kepa Santos
1/13/2021
但是执行“func onBeaconDetected(_ detectedBeacons:[Beacon])”,我得到不符合协议“ScanBeaconsDelegate”,并且我无法更改静态库代码。
评论