mild updates

This commit is contained in:
Kevin G Christiano 2020-02-24 09:58:47 -05:00
parent f889515709
commit e33fe346c6
2 changed files with 2 additions and 8 deletions

View File

@ -808,9 +808,6 @@ extension Label {
- Attention: This method expects text to be set first. Otherwise, it will do nothing.
- parameter range: The range of text to be tapped.
- parameter actionMap:
- parameter delegate:
- parameter additionalData:
*/
@objc public func addTappableLinkAttribute(range: NSRange, actionMap: [AnyHashable: Any]?, additionalData: [AnyHashable: Any]?, delegateObject: DelegateObject?) {

View File

@ -139,7 +139,6 @@ import UIKit
topSeparatorView?.updateView(size)
bottomSeparatorView?.updateView(size)
molecule?.updateView(size)
}
@ -153,9 +152,7 @@ import UIKit
//TODO: Model, Change to model
public func setWithModel(_ model: MoleculeModelProtocol?, _ delegateObject: MVMCoreUIDelegateObject?, _ additionalData: [AnyHashable: Any]?) {
guard let model = model as? ListItemModelProtocol else {
return
}
guard let model = model as? ListItemModelProtocol else { return }
self.listItemModel = model
style(with: model.style)
@ -194,7 +191,7 @@ import UIKit
return nil
}
// MARK: - Arrow
// MARK: - Caret View
/// Adds the standard mvm style caret to the accessory view
@objc public func addCaretViewAccessory() {
guard accessoryView == nil else { return }