123456789101112131415161718192021222324252627282930 |
- import UIKit
- open class ActionSheetLinkItemAppearance: ActionSheetItemAppearance {
-
-
-
-
- public override init() {
- super.init()
- }
-
- public override init(copy: ActionSheetItemAppearance) {
- super.init(copy: copy)
- guard let copy = copy as? ActionSheetLinkItemAppearance else { return }
- linkIcon = copy.linkIcon
- }
-
-
-
-
- public var linkIcon: UIImage?
- }
|