无法将类型 '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
    }
}

我不知道如何将 detectedBeacons 数组转换为 Beacon 对象,我收到“无法将序列元素类型 'NSArray.Element'(又名 'Any')转换为预期类型 'Beacon'".

我很迷茫,因为这是我第一次接触swift。有什么办法可以解决这个问题吗?

你可以试试

func onBeaconDetected(_ detectedBeacons: NSMutableArray!) {
  for beacon in (detectedBeacons as! [Beacon]) {
    //do staff
  }
}