Fix introspection failure

[FAIL] HKWorkoutEvent conforms to NSCopying but does not implement INSCopying

as conformance for NSCopying was added in beta 4 (it's the only change)

HealthKit-iOS-Beta4.md:-@interface HKWorkoutEvent : NSObject <NSSecureCoding>
HealthKit-iOS-Beta4.md:+@interface HKWorkoutEvent : NSObject <NSSecureCoding, NSCopying>
This commit is contained in:
Sebastien Pouliot 2016-08-01 22:17:13 -04:00
Родитель 4962f458f0
Коммит 068bc8b7a4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1534,7 +1534,7 @@ namespace XamCore.HealthKit {
[iOS (8,0)]
[BaseType (typeof (NSObject))]
[DisableDefaultCtor]
public interface HKWorkoutEvent : NSSecureCoding {
public interface HKWorkoutEvent : NSSecureCoding, NSCopying {
[Export ("type")]
HKWorkoutEventType Type { get; }