项目作者: Wassmd

项目描述 :
Reusable Loading view in swift
高级语言: Swift
项目地址: git://github.com/Wassmd/LoadingView.git
创建时间: 2019-07-06T17:22:45Z
项目社区:https://github.com/Wassmd/LoadingView

开源协议:

下载


Loading View

LoadingView.swift - A lightweight simpile reusable Loading view in swift

This can be used to show loading activity with spinner.

This can be used in any view controller or add to any view

This class can be further customized to give fancy UI touch

Below code show how to use in View Controller

  1. let loadingView = LoadingView()
  2. view.addSubview(loadingView)
  3. loadingView.show()

When no more need just hide it

  1. loadingView.hide()

Add constraints in your View Controller to place is in center or wherever you want

MIT License