swift UIView扩展

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift UIView扩展相关的知识,希望对你有一定的参考价值。

//
//  Extensions.swift
//  PriceBar
//
//  Created by Leonid Nifantyev on 1/4/18.
//  Copyright © 2018 LionLife. All rights reserved.
//

import Foundation
import UIKit

typealias ActionClousure = () -> Void

extension UITableView {
    func update(completion: ActionClousure) {
        self.beginUpdates()
        completion()
        self.endUpdates()
    }
}

extension UIViewController {
    func alert(title: String = "Oh, something goes wrong 

以上是关于swift UIView扩展的主要内容,如果未能解决你的问题,请参考以下文章

在 Swift 中平滑扩展 UIView 动画

swift Swift - 扩展以创建弯曲的边缘UIView

扩展 UIView 高度 (Swift)

swift Swift - 在UIView上创建带阴影的圆形图像的扩展

swift UIView扩展

如何在包装器 Swift View 中使用自定义 UIView 的扩展功能?