chengyanfang

sdk upgrade

Showing 56 changed files with 102 additions and 102 deletions
Pod::Spec.new do |s|
s.name = "HHMedicSDK"
s.version = "3.1.0.041214"
s.version = "3.1.0.041215"
s.summary = "和缓基础SDK"
s.description = <<-DESC
... ...
... ... @@ -3,5 +3,5 @@
<plist version="1.0">
<dict>
<key>HHBundleVersion</key>
<string>3.1.0.041214</string></dict>
<string>3.1.0.041215</string></dict>
</plist>
... ...
... ... @@ -582,6 +582,36 @@ typedef SWIFT_ENUM(NSInteger, HHPagerViewTransformerType, open) {
HHPagerViewTransformerTypeCubic = 8,
};
SWIFT_CLASS("_TtC10HHSDKVideo12HHPermission")
@interface HHPermission : NSObject
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
@interface HHPermission (SWIFT_EXTENSION(HHSDKVideo)) <CLLocationManagerDelegate>
- (void)locationManager:(CLLocationManager * _Nonnull)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;
@end
@interface HHPermission (SWIFT_EXTENSION(HHSDKVideo))
/// The textual representation of self.
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// A textual representation of this instance, suitable for debugging.
@property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription;
@end
@class UIViewController;
SWIFT_CLASS("_TtC10HHSDKVideo23HHPhotoPickerController")
... ... @@ -722,36 +752,6 @@ SWIFT_PROTOCOL("_TtP10HHSDKVideo14OptionProtocal_")
SWIFT_CLASS("_TtC10HHSDKVideo10Permission")
@interface Permission : NSObject
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
@interface Permission (SWIFT_EXTENSION(HHSDKVideo)) <CLLocationManagerDelegate>
- (void)locationManager:(CLLocationManager * _Nonnull)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;
@end
@interface Permission (SWIFT_EXTENSION(HHSDKVideo))
/// The textual representation of self.
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// A textual representation of this instance, suitable for debugging.
@property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription;
@end
typedef SWIFT_ENUM(NSInteger, PermissionType, open) {
PermissionTypeLocationAlways = 0,
PermissionTypeLocationWhenInUse = 1,
... ... @@ -1441,6 +1441,36 @@ typedef SWIFT_ENUM(NSInteger, HHPagerViewTransformerType, open) {
HHPagerViewTransformerTypeCubic = 8,
};
SWIFT_CLASS("_TtC10HHSDKVideo12HHPermission")
@interface HHPermission : NSObject
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
@interface HHPermission (SWIFT_EXTENSION(HHSDKVideo)) <CLLocationManagerDelegate>
- (void)locationManager:(CLLocationManager * _Nonnull)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;
@end
@interface HHPermission (SWIFT_EXTENSION(HHSDKVideo))
/// The textual representation of self.
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// A textual representation of this instance, suitable for debugging.
@property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription;
@end
@class UIViewController;
SWIFT_CLASS("_TtC10HHSDKVideo23HHPhotoPickerController")
... ... @@ -1581,36 +1611,6 @@ SWIFT_PROTOCOL("_TtP10HHSDKVideo14OptionProtocal_")
SWIFT_CLASS("_TtC10HHSDKVideo10Permission")
@interface Permission : NSObject
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
@interface Permission (SWIFT_EXTENSION(HHSDKVideo)) <CLLocationManagerDelegate>
- (void)locationManager:(CLLocationManager * _Nonnull)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;
@end
@interface Permission (SWIFT_EXTENSION(HHSDKVideo))
/// The textual representation of self.
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// A textual representation of this instance, suitable for debugging.
@property (nonatomic, readonly, copy) NSString * _Nonnull debugDescription;
@end
typedef SWIFT_ENUM(NSInteger, PermissionType, open) {
PermissionTypeLocationAlways = 0,
PermissionTypeLocationWhenInUse = 1,
... ...
... ... @@ -301,7 +301,7 @@ public struct SDKConfigModel : HHSDKBase.Mappable {
public init?(map: HHSDKBase.Map)
mutating public func mapping(map: HHSDKBase.Map)
}
extension Permission : CoreLocation.CLLocationManagerDelegate {
extension HHPermission : CoreLocation.CLLocationManagerDelegate {
@objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didChangeAuthorization status: CoreLocation.CLAuthorizationStatus)
}
extension EKAttributes {
... ... @@ -906,12 +906,12 @@ extension EKAttributes {
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc deinit
}
@objc public class Permission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.Permission
public static let locationWhenInUse: HHSDKVideo.Permission
public static let microphone: HHSDKVideo.Permission
public static let camera: HHSDKVideo.Permission
public static let photos: HHSDKVideo.Permission
@objc public class HHPermission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.HHPermission
public static let locationWhenInUse: HHSDKVideo.HHPermission
public static let microphone: HHSDKVideo.HHPermission
public static let camera: HHSDKVideo.HHPermission
public static let photos: HHSDKVideo.HHPermission
final public let type: HHSDKVideo.PermissionType
public var status: HHSDKVideo.PermissionStatus {
get
... ... @@ -925,7 +925,7 @@ extension EKAttributes {
@objc override dynamic public init()
@objc deinit
}
extension Permission {
extension HHPermission {
@objc override dynamic public var description: Swift.String {
@objc get
}
... ...
... ... @@ -301,7 +301,7 @@ public struct SDKConfigModel : HHSDKBase.Mappable {
public init?(map: HHSDKBase.Map)
mutating public func mapping(map: HHSDKBase.Map)
}
extension Permission : CoreLocation.CLLocationManagerDelegate {
extension HHPermission : CoreLocation.CLLocationManagerDelegate {
@objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didChangeAuthorization status: CoreLocation.CLAuthorizationStatus)
}
extension EKAttributes {
... ... @@ -906,12 +906,12 @@ extension EKAttributes {
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc deinit
}
@objc public class Permission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.Permission
public static let locationWhenInUse: HHSDKVideo.Permission
public static let microphone: HHSDKVideo.Permission
public static let camera: HHSDKVideo.Permission
public static let photos: HHSDKVideo.Permission
@objc public class HHPermission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.HHPermission
public static let locationWhenInUse: HHSDKVideo.HHPermission
public static let microphone: HHSDKVideo.HHPermission
public static let camera: HHSDKVideo.HHPermission
public static let photos: HHSDKVideo.HHPermission
final public let type: HHSDKVideo.PermissionType
public var status: HHSDKVideo.PermissionStatus {
get
... ... @@ -925,7 +925,7 @@ extension EKAttributes {
@objc override dynamic public init()
@objc deinit
}
extension Permission {
extension HHPermission {
@objc override dynamic public var description: Swift.String {
@objc get
}
... ...
... ... @@ -301,7 +301,7 @@ public struct SDKConfigModel : HHSDKBase.Mappable {
public init?(map: HHSDKBase.Map)
mutating public func mapping(map: HHSDKBase.Map)
}
extension Permission : CoreLocation.CLLocationManagerDelegate {
extension HHPermission : CoreLocation.CLLocationManagerDelegate {
@objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didChangeAuthorization status: CoreLocation.CLAuthorizationStatus)
}
extension EKAttributes {
... ... @@ -906,12 +906,12 @@ extension EKAttributes {
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc deinit
}
@objc public class Permission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.Permission
public static let locationWhenInUse: HHSDKVideo.Permission
public static let microphone: HHSDKVideo.Permission
public static let camera: HHSDKVideo.Permission
public static let photos: HHSDKVideo.Permission
@objc public class HHPermission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.HHPermission
public static let locationWhenInUse: HHSDKVideo.HHPermission
public static let microphone: HHSDKVideo.HHPermission
public static let camera: HHSDKVideo.HHPermission
public static let photos: HHSDKVideo.HHPermission
final public let type: HHSDKVideo.PermissionType
public var status: HHSDKVideo.PermissionStatus {
get
... ... @@ -925,7 +925,7 @@ extension EKAttributes {
@objc override dynamic public init()
@objc deinit
}
extension Permission {
extension HHPermission {
@objc override dynamic public var description: Swift.String {
@objc get
}
... ...
... ... @@ -301,7 +301,7 @@ public struct SDKConfigModel : HHSDKBase.Mappable {
public init?(map: HHSDKBase.Map)
mutating public func mapping(map: HHSDKBase.Map)
}
extension Permission : CoreLocation.CLLocationManagerDelegate {
extension HHPermission : CoreLocation.CLLocationManagerDelegate {
@objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didChangeAuthorization status: CoreLocation.CLAuthorizationStatus)
}
extension EKAttributes {
... ... @@ -906,12 +906,12 @@ extension EKAttributes {
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc deinit
}
@objc public class Permission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.Permission
public static let locationWhenInUse: HHSDKVideo.Permission
public static let microphone: HHSDKVideo.Permission
public static let camera: HHSDKVideo.Permission
public static let photos: HHSDKVideo.Permission
@objc public class HHPermission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.HHPermission
public static let locationWhenInUse: HHSDKVideo.HHPermission
public static let microphone: HHSDKVideo.HHPermission
public static let camera: HHSDKVideo.HHPermission
public static let photos: HHSDKVideo.HHPermission
final public let type: HHSDKVideo.PermissionType
public var status: HHSDKVideo.PermissionStatus {
get
... ... @@ -925,7 +925,7 @@ extension EKAttributes {
@objc override dynamic public init()
@objc deinit
}
extension Permission {
extension HHPermission {
@objc override dynamic public var description: Swift.String {
@objc get
}
... ...
... ... @@ -301,7 +301,7 @@ public struct SDKConfigModel : HHSDKBase.Mappable {
public init?(map: HHSDKBase.Map)
mutating public func mapping(map: HHSDKBase.Map)
}
extension Permission : CoreLocation.CLLocationManagerDelegate {
extension HHPermission : CoreLocation.CLLocationManagerDelegate {
@objc dynamic public func locationManager(_ manager: CoreLocation.CLLocationManager, didChangeAuthorization status: CoreLocation.CLAuthorizationStatus)
}
extension EKAttributes {
... ... @@ -906,12 +906,12 @@ extension EKAttributes {
@objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
@objc deinit
}
@objc public class Permission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.Permission
public static let locationWhenInUse: HHSDKVideo.Permission
public static let microphone: HHSDKVideo.Permission
public static let camera: HHSDKVideo.Permission
public static let photos: HHSDKVideo.Permission
@objc public class HHPermission : ObjectiveC.NSObject {
public static let locationAlways: HHSDKVideo.HHPermission
public static let locationWhenInUse: HHSDKVideo.HHPermission
public static let microphone: HHSDKVideo.HHPermission
public static let camera: HHSDKVideo.HHPermission
public static let photos: HHSDKVideo.HHPermission
final public let type: HHSDKVideo.PermissionType
public var status: HHSDKVideo.PermissionStatus {
get
... ... @@ -925,7 +925,7 @@ extension EKAttributes {
@objc override dynamic public init()
@objc deinit
}
extension Permission {
extension HHPermission {
@objc override dynamic public var description: Swift.String {
@objc get
}
... ...