mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
aa48f4c266
Core refactoring for nine patch implementation Add nine patch for background images.
9 lines
216 B
Swift
9 lines
216 B
Swift
// Copyright 2022 Yandex LLC. All rights reserved.
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
public protocol RemoteImageViewContentProtocol: UIView, ImageViewProtocol {
|
|
func setImage(_ image: UIImage?, animated: Bool?)
|
|
}
|